This website documents my project progress for CSCE 5612
Initial setup completed! An image of the assembled base and a screenshot of the blink sketch are below.
Assembled base
Blink sketch
// Blink.ino code snippet
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Image and embedded video for the first part of the Week 1 lab
Image from Unsplash