Skip to content

Commit

Permalink
clang
Browse files Browse the repository at this point in the history
  • Loading branch information
brentru committed Aug 11, 2021
1 parent 7938d5d commit 443b7c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Wippersnapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

// External libraries
#include "Adafruit_MQTT.h" // MQTT Client
#include "Arduino.h" // Wiring
#include "Arduino.h" // Wiring
#include <Adafruit_DotStar.h>
#include <Adafruit_NeoPixel.h>
#include <ArduinoJson.h>
Expand Down
2 changes: 1 addition & 1 deletion src/network_interfaces/Wippersnapper_ESP32.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class Wippersnapper_ESP32 : public Wippersnapper {
// wait for connection to be established
long startRetry = millis();
while (WiFi.status() != WL_CONNECTED && millis() - startRetry < 10000) {
// do nothing, busy loop during the timeout
// do nothing, busy loop during the timeout
}
// timeout expired and connected
if (WiFi.status() == WL_CONNECTED) {
Expand Down

0 comments on commit 443b7c2

Please sign in to comment.