tmp
This commit is contained in:
commit
df70f8bd05
|
@ -0,0 +1,63 @@
|
|||
#include <ESP8266WebServer.h>
|
||||
#include <ESP8266WiFi.h>
|
||||
#include <WiFiClient.h>
|
||||
//#include <ESP8266HTTPClient.h>
|
||||
#include <FS.h>
|
||||
|
||||
void setup_mode() {
|
||||
WiFi.softAP(ssid, password); // Start the access point
|
||||
Serial.print("Access Point \"");
|
||||
Serial.print(ssid);
|
||||
Serial.println("\" started");
|
||||
|
||||
Serial.print("IP address:\t");
|
||||
Serial.println(
|
||||
WiFi.softAPIP()); // Send the IP address of the ESP8266 to the computer
|
||||
}
|
||||
|
||||
void connect() {
|
||||
WiFi.mode(WIFI_STA);
|
||||
WiFi.hostname("flash-httpd");
|
||||
WiFi.begin("WEMOS", "SNAPWIRE");
|
||||
// Wait until we're connected.
|
||||
while (WiFi.status() != WL_CONNECTED) {
|
||||
delay(500);
|
||||
Serial.print(".");
|
||||
}
|
||||
Serial.println("WiFi connected");
|
||||
// Print the IP address
|
||||
Serial.print("Use this URL to connect: ");
|
||||
Serial.print("http://");
|
||||
Serial.print(WiFi.localIP());
|
||||
Serial.println("/");
|
||||
}
|
||||
|
||||
void startup() {
|
||||
File f = SPIFFS.open("/index.html", "r");
|
||||
while (f.available()) {
|
||||
// Lets read line by line from the file
|
||||
String line = f.readStringUntil('\n');
|
||||
Serial.println(line);
|
||||
}
|
||||
|
||||
f = SPIFFS.open("/config.txt", "r");
|
||||
if (!f.available()) {
|
||||
Serial.println("Launching in access point mode.");
|
||||
return;
|
||||
}
|
||||
Serial.println("Reading existing config.");
|
||||
|
||||
while (f.available()) {
|
||||
// Lets read line by line from the file
|
||||
String line = f.readStringUntil('\n');
|
||||
Serial.println(line);
|
||||
}
|
||||
}
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
SPIFFS.begin();
|
||||
startup();
|
||||
}
|
||||
|
||||
void loop() { delay(2000); }
|
|
@ -0,0 +1,8 @@
|
|||
<HTML>
|
||||
<head>
|
||||
<link rel="stylesheet" href="tachyon.css" type="text/css" media="screen" />
|
||||
</head>
|
||||
<body>
|
||||
Welcome
|
||||
</body>
|
||||
</html>
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,10 @@
|
|||
|
||||
requirements
|
||||
|
||||
https://github.com/esp8266/arduino-esp8266fs-plugin
|
||||
https://github.com/esp8266/arduino-esp8266fs-plugin/files/2936951/ESP8266FS.zip
|
||||
pip install esptool
|
||||
|
||||
esptool -p /dev/ttyUSB0
|
||||
|
||||
make sure to set the spiffs size in the arduino before uploading to allocate space for files
|
|
@ -0,0 +1,8 @@
|
|||
<HTML>
|
||||
<head>
|
||||
<link rel="stylesheet" href="tachyon.css" type="text/css" media="screen" />
|
||||
</head>
|
||||
<body>
|
||||
Welcome
|
||||
</body>
|
||||
</html>
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue