Skip to content

Commit

Permalink
BlinkMachine example compiling aith attiny85
Browse files Browse the repository at this point in the history
  • Loading branch information
mathertel committed Dec 2, 2023
1 parent eb36148 commit 0ed3b51
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/BlinkMachine/BlinkMachine.ino
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ MyActions;
#define PIN_INPUT A1
#define PIN_LED 13

#elif defined(ARDUINO_attiny)
// Example for Arduino UNO with input button on pin 2 and builtin LED on pin 13
#define PIN_INPUT PB0
#define PIN_LED PB1

#elif defined(ESP8266)
// Example for NodeMCU with input button using FLASH button on D3 and using the led on -12 module (D4).
// This LED is lighting on output level LOW.
Expand Down

0 comments on commit 0ed3b51

Please sign in to comment.