mirror of
https://github.com/jaksatomovic/esp32-clickwheel.git
synced 2025-07-04 11:07:12 -04:00
15 lines
221 B
C
15 lines
221 B
C
#ifndef PINS_H
|
|
#define PINS_H
|
|
|
|
#define BUTTON_PIN 12
|
|
#define NEOPIXEL_PIN 33
|
|
|
|
//------------------
|
|
// CLICKWHEEL
|
|
//------------------
|
|
|
|
#define CLOCK_PIN 4 // SCL purple
|
|
#define DATA_PIN 3 // SDA grey
|
|
|
|
#endif // PINS_H
|