Toyomasa Watarai / Mbed OS mbed-cloud-example_WiFi_ESP32

Fork of mbed-cloud-example_GR-LYCHEE by Renesas

Revision:
13:feeaccc4717f
Parent:
12:b1a3a0ccd96e
Child:
14:34eab7c4e26d
diff -r b1a3a0ccd96e -r feeaccc4717f main.cpp
--- a/main.cpp	Mon Aug 20 01:19:18 2018 +0000
+++ b/main.cpp	Mon Aug 20 02:57:04 2018 +0000
@@ -22,8 +22,8 @@
 #include "FATFileSystem.h"
 #include "ESP32Interface.h"
 
-#define SSID "Buffalo-G-C42E"
-#define PASSWORD "issvsunfx8te3"
+#define SSID "SSID"
+#define PASSWORD "PASSWORD"
 
 // An event queue is a very useful structure to debounce information between contexts (e.g. ISR and normal threads)
 // This is great because things such as network operations are illegal in ISR, so updating a resource in a button's fall() function is not allowed