Skip to content

Instantly share code, notes, and snippets.

@Sophi
Sophi / Blimpy server
Created December 8, 2018 16:25
Blimpy server code
/* server blimp
*/
// motors should be interrupt driven
// battery monitor: https://arduino.stackexchange.com/questions/24450/esp8266-battery-monitor
#include <ESP8266WiFi.h>
char ssid[] = "Linksys59517"; // SSID of router
char pass[] = "0000000000";
WiFiServer server(80);
WiFiClient client = server.available();