Week 10 – Output Devices
This weeks Assignment at Kuwait Fab Lab Simply is to add an output device to a microcontroller board and then program it. I chose to make hello RGB board from fab academy choices. I downloaded the board file from fab academy website and milled it. Next I soldered all the components onto the board and flashed the microcontroller. To make sure and test it out , the light came on and faded from color to color.
Also I was thinking to play around with some other output devices such as servos, steppers and other led stuff. The process was the same , simply I milled the board , soldered all the components. Used at my fabisp to burn the boot loader and then programming. I used the arduino software to experiment with these different devices.
* Codes :
### AHMAD ALENEZI
void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH); // set the LED on
delay(1000); // wait for a second
digitalWrite(13, LOW); // set the LED off
delay(1000); // wait for a second
}