This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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(); |