-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from brentru/add-nano33-iot
Add support for Arduino Nano 33 IoT, MKR1010 WiFi
- Loading branch information
Showing
23 changed files
with
398 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
examples/Wippersnapper_NoFS/.metro_m4_airliftlite_tinyusb.test.skip
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Adafruit IO WipperSnapper Beta | ||
// | ||
// | ||
// NOTE: This software is a BETA release and in active development. | ||
// Please report bugs or errors to | ||
// https://github.com/adafruit/Adafruit_Wippersnapper_Arduino/issues | ||
// | ||
// This sketch is for devices which lack USB-MSD or LittleFS support such | ||
// as the Arduino MKR WiFi 1010, Arduino Nano 33 IoT. | ||
// | ||
// Adafruit invests time and resources providing this open source code. | ||
// Please support Adafruit and open source hardware by purchasing | ||
// products from Adafruit! | ||
// | ||
// Brent Rubell for Adafruit Industries, 2021 | ||
// | ||
// All text above must be included in any redistribution. | ||
|
||
#include "Wippersnapper_Networking.h" | ||
|
||
/************************ Adafruit IO Config *******************************/ | ||
|
||
// Visit io.adafruit.com if you need to create an account, | ||
// or if you need your Adafruit IO key. | ||
#define IO_USERNAME "YOUR_AIO_USERNAME" | ||
#define IO_KEY "YOUR_AIO_PASSWORD" | ||
|
||
/**************************** WiFi Config ***********************************/ | ||
#define WIFI_SSID "YOUR_WIFI_SSID" | ||
#define WIFI_PASS "YOUR_WIFI_PASSWORD" | ||
|
||
#include "Wippersnapper_Networking.h" | ||
Wippersnapper_WiFi wipper(IO_USERNAME, IO_KEY, WIFI_SSID, WIFI_PASS); | ||
|
||
void setup() { | ||
// Provisioning must occur prior to serial init. | ||
wipper.provision(); | ||
|
||
Serial.begin(115200); | ||
// while (!Serial) delay(10); | ||
|
||
wipper.connect(); | ||
} | ||
|
||
void loop() { wipper.run(); } |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
44 changes: 0 additions & 44 deletions
44
examples/wippersnapper-simpletest-esp8266/wippersnapper-simpletest-esp8266.ino
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name=Adafruit WipperSnapper Beta | ||
version=1.0.0-beta.20 | ||
version=1.0.0-beta.21 | ||
author=Adafruit | ||
maintainer=Adafruit <[email protected]> | ||
sentence=Arduino client for Adafruit.io WipperSnapper | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.