diff --git a/sketch_oct11a.ino b/sketch_oct11a.ino index 91b8b9d..6072e46 100644 --- a/sketch_oct11a.ino +++ b/sketch_oct11a.ino @@ -1,11 +1,3 @@ -/* - * This sketch sends data via HTTP GET requests to data.sparkfun.com service. - * - * You need to get streamId and privateKey at data.sparkfun.com and paste them - * below. Or just customize this script to talk to other HTTP servers. - * - */ - #include const char* ssid = "CTDO-g"; @@ -23,16 +15,9 @@ void setup() { delay(10); pinMode(buttonPin, INPUT); - // We start by connecting to a WiFi network - - Serial.println(); - Serial.println(); Serial.print("Connecting to "); Serial.println(ssid); - /* Explicitly set the ESP8266 to be a WiFi-client, otherwise, it by default, - would try to act as both a client and an access-point and could cause - network-issues with your other WiFi-devices on your WiFi-network. */ WiFi.mode(WIFI_STA); WiFi.begin(ssid, password);