Skip to content

Instantly share code, notes, and snippets.

View Kevin7020's full-sized avatar
:atom:
Inverted vertical reversement

Kevin Porras Rowe Kevin7020

:atom:
Inverted vertical reversement
View GitHub Profile
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
const char* ssid = "..............";
const char* password = "................";
String form = "<form action='led'><input type='radio' name='state' value='1' checked>On<input type='radio' name='state' value='0'>Off<input type='submit' value='Submit'></form>";
String imagepage = "<img src='/led.png'>";