Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void setup() {
- pinMode(5, OUTPUT);
- }
- void loop() {
- digitalWrite(5, HIGH);
- delay(500);
- digitalWrite(5, LOW);
- delay(500);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement