Skip to content

Instantly share code, notes, and snippets.

View TheMagicSmoke's full-sized avatar

TheMagicSmoke

View GitHub Profile
@TheMagicSmoke
TheMagicSmoke / esp01_mod.ino
Last active April 23, 2019 09:05
Esp8266 code (Modified)
#include <ESP8266WiFi.h>
#include "ESP8266WebServer.h"
char ssid[] = "demowifi"; // network SSID (name)
char pass[] = "demowifi"; // network password
//serial comm variables
uint8_t dataToSend = 0;
char dataFromAtmega[30];
@TheMagicSmoke
TheMagicSmoke / esp01.ino
Created April 22, 2019 14:26
Esp8266 Code
#include <ESP8266WiFi.h>
char ssid[] = "demowifi"; // network SSID (name)
char pass[] = "demowifi"; // network password
//serial comm variables
uint8_t dataToSend = 0;
char dataFromAtmega[30];
WiFiServer server(80);