Advertisement
inventrkits

cnt5

Jan 22nd, 2020
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. void setup () {
  2.   // Initialize the digital pin as an output.
  3.   // Pin 13 has an LED connected on most Arduino boards:
  4.   pinMode (8, OUTPUT);
  5. }
  6. void loop () {
  7.   digitalWrite (8, HIGH); // set the LED on
  8.   delay (2000); // wait for a second
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement