File tree Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Original file line number Diff line number Diff line change 66
66
// #define digitalPinToTimer(P)
67
67
68
68
69
+ // Digital pins
70
+ // ----
71
+ #define PIN_D4 (4u)
72
+ #define PIN_D5 (5u)
73
+ #define PIN_D7 (7u)
74
+ #define PIN_D8 (8u)
75
+ #define PIN_D11 (25u)
76
+ #define PIN_D12 (26u)
77
+ #define PIN_D13 (13u)
78
+
79
+ #define D4 PIN_D4
80
+ #define D5 PIN_D5
81
+ #define D7 PIN_D7
82
+ #define D8 PIN_D8
83
+ #define D11 PIN_D11
84
+ #define D12 PIN_D12
85
+ #define D13 PIN_D13
86
+
69
87
// LEDs
70
88
// ----
71
- #define PIN_LED_13 (13u )
89
+ #define PIN_LED_13 (D13 )
72
90
#define PIN_LED PIN_LED_13
73
91
#define LED_BUILTIN PIN_LED
74
92
75
93
// Neopixel
76
- #define PIN_NEOPIXEL 8
94
+ #define PIN_NEOPIXEL D8
77
95
#define NEOPIXEL_NUM 10
78
96
79
- #define PIN_BUTTON1 4 // Left Button
80
- #define PIN_BUTTON2 5 // Right Button
97
+ #define PIN_BUTTON1 D4 // Left Button
98
+ #define PIN_BUTTON2 D5 // Right Button
81
99
82
100
83
101
//#define PIN_LED_RXL (25u)
You can’t perform that action at this time.
0 commit comments