Skip to content

Commit 8aa233a

Browse files
committed
Modify demos
1 parent afffa81 commit 8aa233a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

examples/Wippersnapper_demo_offline/Wippersnapper_demo_offline.ino

-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@
1111

1212
#include "ws_adapters.h"
1313
ws_adapter_offline wipper;
14-
1514
#define WS_DEBUG // Enable debug output!
1615

1716
void setup() {
1817
Serial.begin(115200);
19-
while (!Serial) delay(10);
2018
wipper.provision();
2119
wipper.connect();
2220
}

examples/wippersnapper_debug/wippersnapper_debug.ino

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
// Adafruit IO WipperSnapper Beta (DEBUG BUILD ONLY!)
2-
// Brent Rubell for Adafruit Industries, 2021 - 2023
2+
// Brent Rubell for Adafruit Industries, 2021 - 2025
33

4-
#include "Wippersnapper_Networking.h"
4+
#include "ws_adapters.h"
55
ws_adapter_wifi wipper;
6+
// Uncomment the following line to use the offline adapter for Pico
7+
// ws_adapter_offline wipper;
68

79
// Enable debug output for beta builds
810
#define WS_DEBUG

src/Wippersnapper_demo.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "ws_adapters.h"
1212
ws_adapter_wifi wipper;
1313
// Uncomment the following line to use the offline adapter for Pico
14-
//ws_adapter_offline wipper;
14+
// ws_adapter_offline wipper;
1515

1616
#define WS_DEBUG // Enable debug output!
1717

0 commit comments

Comments
 (0)