File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 63
63
#endif
64
64
65
65
#define WS_VERSION \
66
- " 1.0.0-beta.17 " // /< WipperSnapper app. version (semver-formatted)
66
+ " 1.0.0-beta.18 " // /< WipperSnapper app. version (semver-formatted)
67
67
68
68
// Reserved Adafruit IO MQTT topics
69
69
#define TOPIC_IO_THROTTLE " /throttle" // /< Adafruit IO Throttle MQTT Topic
Original file line number Diff line number Diff line change @@ -50,8 +50,12 @@ bool Wippersnapper::statusLEDInit() {
50
50
// some hardware requires the NEOPIXEL_POWER pin to be enabled.
51
51
#ifdef NEEDS_STATUS_NEOPIXEL_POWER
52
52
pinMode (NEOPIXEL_POWER, OUTPUT);
53
+ #if defined(ARDUINO_ADAFRUIT_FEATHER_ESP32S2)
54
+ digitalWrite (NEOPIXEL_POWER, HIGH);
55
+ #else
53
56
digitalWrite (NEOPIXEL_POWER, LOW);
54
57
#endif
58
+ #endif
55
59
56
60
#ifdef USE_STATUS_DOTSTAR
57
61
if (WS.lockStatusDotStar == false ) {
You can’t perform that action at this time.
0 commit comments