Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.11 KB | None | 0 0
  1. #define LED_PIN 11
  2. void setup()
  3. {
  4.   pinMode(LED_PIN, OUTPUT);
  5. }
  6.  
  7. void loop()
  8. {
  9.     analogWrite(LED_PIN, 127);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement