In class we learned the basics of how LED's function and how to connect them to batteries with copper tape. Our teacher wanted us to implement a connection to what is happening in today's society so we decided to make the fist to the Black Lives Matter Movement going on recently.
Research
This is a circuit diagram to make a single LED light up. Circuit diagrams can be used to plan out and execute complicated wiring digitally.
This Is where in class we made six single LED's blink by putting them in a parallel circuit.
This is the hashtag file that goes into my led strip. It is best represented by young activist Greta Thunberg
This is the person that represents my topic the best. Greta is a young climate activist who is trying to make a huge change in the world. My Hashtag is saveourearth which is Greta's ultimate goal.
Semester 1 reflection: Semester on for me was really fun while still being able to get work accomplished. The hardest part of this semester was getting the materials we needed. being back in the building would be easier just for the fact that our teacher could help us with our individual problems but overall the semester was quite successful
Steps of the design process. First you must have a problem you must solve. Next you have to research. After that you have to brainstorm and prototype after that you have to gather feedback and improve
int led2 = 2;
int led3 = 3;
int led4 = 4;
int led10 = 10;
int led11 = 11;
int led12 = 12;
void setup() {
pinMode(led2, OUTPUT) ;
pinMode(led3, OUTPUT) ;
pinMode(led4, OUTPUT) ;
pinMode(led10, OUTPUT) ;
pinMode(led11, OUTPUT) ;
pinMode(led12, OUTPUT) ;
}
void loop() {
digitalWrite(led2, HIGH);
delay(1000);
digitalWrite(led2, LOW) ;
delay(1000);
digitalWrite(led3, HIGH);
delay(1000);
digitalWrite(led3, LOW) ;
delay(1000);
digitalWrite(led4, HIGH);
delay(1000);
digitalWrite(led4, LOW) ;
delay(1000);
digitalWrite(led10, HIGH);
delay(1000);
digitalWrite(led10, LOW) ;
delay(1000);
digitalWrite(led11, HIGH);
delay(1000);
digitalWrite(led11, LOW) ;
delay(1000);
digitalWrite(led12, HIGH);
delay(1000);
digitalWrite(led12, LOW) ;
delay(1000);
}
int led = 13;
void setup() {
pinMode(led, OUTPUT) ;
}
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW) ;
delay(1000);
}