We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb36148 commit 0ed3b51Copy full SHA for 0ed3b51
examples/BlinkMachine/BlinkMachine.ino
@@ -63,6 +63,11 @@ MyActions;
63
#define PIN_INPUT A1
64
#define PIN_LED 13
65
66
+#elif defined(ARDUINO_attiny)
67
+// Example for Arduino UNO with input button on pin 2 and builtin LED on pin 13
68
+#define PIN_INPUT PB0
69
+#define PIN_LED PB1
70
+
71
#elif defined(ESP8266)
72
// Example for NodeMCU with input button using FLASH button on D3 and using the led on -12 module (D4).
73
// This LED is lighting on output level LOW.
0 commit comments