Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int LEDPIN = 8;
- void setup() {
- // put your setup code here, to run once:
- pinMode(LEDPIN, OUTPUT);
- }
- void loop() {
- // put your main code here, to run repeatedly:
- digitalWrite(LEDPIN, HIGH); // HIGH = 5V, LOW = GROUND VOLTAGE
- delay(500);
- digitalWrite(LEDPIN, LOW);
- delay(500);
- }
Add Comment
Please, Sign In to add comment