Traffic Light for Arduino Ampel für Arduino
prusaprinters
Printing things for a traffic light, controlled by an Arduino.One model is for 5 mm LEDs, the other for 10 mm LEDs!You have to write an Arduino-Sketch!####Take that simple one for first experience :-) :Sketch added to files!----------------------int ROT=2; //Red LED on PIN 2int GELB=4; // and so onint GRUEN=6;void setup() {pinMode(ROT, OUTPUT);pinMode(GELB,OUTPUT);pinMode(GRUEN,OUTPUT);}void loop() { digitalWrite(ROT,HIGH); delay(10000); // 10 sec Red digitalWrite(GELB,HIGH); delay(3000); digitalWrite(ROT,LOW); digitalWrite(GELB,LOW); digitalWrite(GRUEN,HIGH); delay(10000); digitalWrite(GRUEN,LOW); digitalWrite(GELB,HIGH); delay(4000); digitalWrite(GELB,LOW); }
With this file you will be able to print Traffic Light for Arduino Ampel für Arduino with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Traffic Light for Arduino Ampel für Arduino.