Skip to content

Commit

Permalink
Add workflow for this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
brentru committed Feb 24, 2025
1 parent 9c3d525 commit 0d96f93
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-offline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: WipperSnapper Release Workflow for "Offline Mode" Alpha Feature
on:
push:
branches:
- test-offline-release
- migrate-api-v2
secrets:
GH_REPO_TOKEN:
required: true
Expand Down
23 changes: 23 additions & 0 deletions src/Wippersnapper_demo.ino.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 1 "/var/folders/ff/dmzflvf52tq9kzvt6g8jglxw0000gn/T/tmpixceqmn2"
#include <Arduino.h>
# 1 "/Users/brentrubell/Documents/Arduino/libraries/Adafruit_Wippersnapper_Arduino/src/Wippersnapper_demo.ino"
# 11 "/Users/brentrubell/Documents/Arduino/libraries/Adafruit_Wippersnapper_Arduino/src/Wippersnapper_demo.ino"
#include "ws_adapters.h"
ws_adapter_wifi wipper;



#define WS_DEBUG
void setup();
void loop();
#line 18 "/Users/brentrubell/Documents/Arduino/libraries/Adafruit_Wippersnapper_Arduino/src/Wippersnapper_demo.ino"
void setup() {
Serial.begin(115200);
while (!Serial) delay(10);
wipper.provision();
wipper.connect();
}

void loop() {
wipper.run();
}

0 comments on commit 0d96f93

Please sign in to comment.