Skip to content

Commit

Permalink
Modify demos
Browse files Browse the repository at this point in the history
  • Loading branch information
brentru committed Feb 24, 2025
1 parent afffa81 commit 8aa233a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@

#include "ws_adapters.h"
ws_adapter_offline wipper;

#define WS_DEBUG // Enable debug output!

void setup() {
Serial.begin(115200);
while (!Serial) delay(10);
wipper.provision();
wipper.connect();
}
Expand Down
6 changes: 4 additions & 2 deletions examples/wippersnapper_debug/wippersnapper_debug.ino
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
// Adafruit IO WipperSnapper Beta (DEBUG BUILD ONLY!)
// Brent Rubell for Adafruit Industries, 2021 - 2023
// Brent Rubell for Adafruit Industries, 2021 - 2025

#include "Wippersnapper_Networking.h"
#include "ws_adapters.h"
ws_adapter_wifi wipper;
// Uncomment the following line to use the offline adapter for Pico
// ws_adapter_offline wipper;

// Enable debug output for beta builds
#define WS_DEBUG
Expand Down
2 changes: 1 addition & 1 deletion src/Wippersnapper_demo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "ws_adapters.h"
ws_adapter_wifi wipper;
// Uncomment the following line to use the offline adapter for Pico
//ws_adapter_offline wipper;
// ws_adapter_offline wipper;

#define WS_DEBUG // Enable debug output!

Expand Down

0 comments on commit 8aa233a

Please sign in to comment.