#include ESP8266WiFi.h unsigned long timeNow = 0; unsigned long timeLast = 0; int seconds = 0; int buttonState; // Thing Speak API server const char* myserver = “192.168.1.5”; const char* resource = “/for-test/esp8266-control-web-relay.php”; char temperatureCString[7]; char temperatureFString[7]; const char *ssid = “KMTRONIC”; const char *password = “12345678”; void Post() { WiFiClient client; . . .
Category: ESP8266
ESP8266: Multiple SSID’s using one ESP8266 Module

/* * This Code is for the ESP8266 WiFi Module. It builds a website running AJAX (Asynchronous JavaScript and XML) * which allows this webpage to update itself without having to refresh itself which may not be resource friendly */ #include <ESP8266WiFi.h> #include <ESP8266WebServer.h> #include <OneWire.h> #include <DallasTemperature.h> // Data wire is plugged . . .
Randomnerdtutorials: ESP8266 DS18B20 Temperature Sensor Web Server with Arduino IDE

ESP8266 DS18B20 Temperature Sensor Web Server with Arduino IDE – output XML data /* This example code is in the public domain. */ #include <ESP8266WiFi.h> #include <ESP8266WebServer.h> #include <OneWire.h> #include <DallasTemperature.h> // Data wire is plugged into pin D1 on the ESP8266 12-E – GPIO 5 #define ONE_WIRE_BUS 5 // Setup a oneWire . . .
ESP8266 WiFi LED dimmer Part 6 of X: ESP8266 Domoticz Wall Switch – Intermittent Technology

Source: ESP8266 WiFi LED dimmer Part 6 of X: ESP8266 Domoticz Wall Switch – Intermittent Technology . . .