Advertisement
Guest User

Untitled

a guest
Aug 6th, 2015
10,545
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. void setup() {
  2. Serial.begin(9600);
  3. }
  4. void loop() {
  5. Serial.println("H"); //turn on the LED
  6. delay(1000);
  7. Serial.println("L");//turn off the LED
  8. delay(1000);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement