Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Adafruit WipperSnapper
version=1.0.0-beta.61
version=1.0.0-beta.62
author=Adafruit
maintainer=Adafruit <[email protected]>
sentence=Arduino client for Adafruit.io WipperSnapper
Expand Down
2 changes: 1 addition & 1 deletion src/Wippersnapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
#endif

#define WS_VERSION \
"1.0.0-beta.61" ///< WipperSnapper app. version (semver-formatted)
"1.0.0-beta.62" ///< WipperSnapper app. version (semver-formatted)

// Reserved Adafruit IO MQTT topics
#define TOPIC_IO_THROTTLE "/throttle" ///< Adafruit IO Throttle MQTT Topic
Expand Down
6 changes: 2 additions & 4 deletions src/components/digitalIO/Wippersnapper_DigitalGPIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,10 @@ void Wippersnapper_DigitalGPIO::digitalWriteSvc(uint8_t pinName, int pinValue) {
#if defined(ARDUINO_ESP8266_ADAFRUIT_HUZZAH)
// The Adafruit Feather ESP8266's built-in LED is reverse wired so setting the
// pin LOW will turn the LED on.
if (pinName == 0) {
WS_DEBUG_PRINTLN("Invert!");
if (pinName == 0)
digitalWrite(pinName, !pinValue);
} else {
else
digitalWrite(pinName, pinValue);
}
#else
digitalWrite(pinName, pinValue);
#endif
Expand Down