| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /*
- * https://www.freeboard.io/account/settings
- *
- * account: cigarbar@gmx.com
- *
- * https://dweet.io/play/#!/dweets/postDweet_post_0
- *
- *
- */
- // Import required libraries
- #include "ESP8266WiFi.h"
- // WiFi parameters
- const char* ssid = "hazard18";
- const char* password = "pu1f0xylu1";
- // Pin
- #define LIGHTSENSOR A0
- // Host
- const char* host = "dweet.io";
- void setup() {
-
- // Start Serial
- Serial.begin(115200);
- delay(10);
- pinMode(LIGHTSENSOR, INPUT);
- // We start by connecting to a WiFi network
- Serial.println();
- Serial.println();
- Serial.print("Connecting to ");
- Serial.println(ssid);
- WiFi.begin(ssid, password);
- while (WiFi.status() != WL_CONNECTED) {
- delay(500);
- Serial.print(".");
- }
- Serial.println("");
- Serial.println("WiFi connected");
- Serial.println("IP address: ");
- Serial.println(WiFi.localIP());
- }
- void loop() {
-
- Serial.print("Connecting to ");
- Serial.println(host);
-
- // Use WiFiClient class to create TCP connections
- WiFiClient client;
- const int httpPort = 80;
- if (!client.connect(host, httpPort)) {
- Serial.println("connection failed");
- return;
- }
-
- int h = (unsigned int) analogRead(LIGHTSENSOR);
- Serial.println("a0 val: " + String(h));
-
- // This will send the request to the server
- client.print(String("GET /dweet/for/esp1881?light_intensity=") + String(h) + " HTTP/1.1\r\n" +
- "Host: " + host + "\r\n" +
- "Connection: close\r\n\r\n");
- delay(10);
-
- // Read all the lines of the reply from server and print them to Serial
- while(client.available()){
- String line = client.readStringUntil('\r');
- Serial.print(line);
- }
-
- Serial.println();
- Serial.println("closing connection");
-
- // Repeat every 10 seconds
- delay(1000);
-
- }
|