Background
What is PCB?
PCB fabrication methods
Tasks
This week has following tasks:
1. PCB Manufacturing using Milling
2.PCB fabrication at our FabLab
3.Exploring the Xiao rp2040 microcontroller
#include <Adafruit_NeoPixel.h> int Power = 11; int PIN = 12; #define NUMPIXELS 1 Adafruit_NeoPixel pixels(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800); void setup() { pixels.begin(); Serial.begin(9600); pinMode(Power, OUTPUT); digitalWrite(Power, HIGH); pixels.show(); pixels.clear(); pixels.setPixelColor(0, pixels.Color(0, 0, 255)); } void loop() { pixels.show(); if (Serial.available() > 0) { // Read the serial input char receivedChar = Serial.read(); // Change the pixel color to red pixels.clear(); pixels.setPixelColor(0, pixels.Color(255, 0, 0)); } delay(400); }