Skip to content

Commit

Permalink
fake file secret information
Browse files Browse the repository at this point in the history
please replace the info  with a real infos
  • Loading branch information
flavioJoshua authored Jan 21, 2023
1 parent a18dff8 commit f9a5d5a
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions src/arduino_secrets.h
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

0 comments on commit f9a5d5a

Please sign in to comment.