Advertisement
mhdew

Simple LED

Nov 4th, 2020
2,095
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.09 KB | None | 0 0
  1. void setup()
  2. {
  3.   pinMode(9, OUTPUT);
  4. }
  5.  
  6. void loop()
  7. {
  8.   digitalWrite(9, HIGH);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement