-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
please replace the info with a real infos
- Loading branch information
1 parent
a18dff8
commit f9a5d5a
Showing
1 changed file
with
47 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#include <ArduinoIoTCloud.h> | ||
#include <Arduino_ConnectionHandler.h> | ||
#if OTA_STORAGE_SNU | ||
# include <SNU.h> | ||
# include <WiFiNINA.h> /* WiFiStorage */ | ||
#endif | ||
/* A complete list of supported boards with WiFi is available here: | ||
* https://github.com/arduino-libraries/ArduinoIoTCloud/#what | ||
*/ | ||
#if defined(BOARD_HAS_WIFI) | ||
// #define SECRET_SSID "Ospiti-2.4GHzPro" | ||
// #define SECRET_PASS "xxxx" | ||
#define SECRET_SSID "xxx" | ||
#define SECRET_PASS "xxxxx" | ||
|
||
#endif | ||
|
||
/* ESP8266 -secretKey secondoD1r2 */ | ||
#if defined(BOARD_ESP) | ||
#define SECRET_DEVICE_KEY "xxxxxZLNLDG" | ||
#endif | ||
|
||
#if defined(BOARD_ESP) | ||
#define BOARD_ID "xxxxxx-5f4022383260" | ||
#endif | ||
|
||
/* MKR GSM 1400 */ | ||
#if defined(BOARD_HAS_GSM) | ||
#define SECRET_PIN "" | ||
#define SECRET_APN "" | ||
#define SECRET_LOGIN "" | ||
#define SECRET_PASS "" | ||
#endif | ||
|
||
/* MKR WAN 1300/1310 */ | ||
#if defined(BOARD_HAS_LORA) | ||
#define SECRET_APP_EUI "" | ||
#define SECRET_APP_KEY "" | ||
#endif | ||
|
||
/* MKR NB 1500 */ | ||
#if defined(BOARD_HAS_NB) | ||
#define SECRET_PIN "" | ||
#define SECRET_APN "" | ||
#define SECRET_LOGIN "" | ||
#define SECRET_PASS "" | ||
#endif |