buzzer/src/main.cpp

82 lines
1.4 KiB
C++
Raw Normal View History

2022-12-30 19:19:52 +01:00
#include <Arduino.h>
#include <ESPAsyncWebServer.h>
#include <SPIFFS.h>
#include "creds.h"
2022-12-30 19:19:52 +01:00
// #define B_WIFI_AP
const byte led = 2;
2022-12-31 20:54:44 +01:00
bool ledOn = false;
AsyncWebServer server(80);
2022-12-31 20:54:44 +01:00
void onPlay(AsyncWebServerRequest *request)
{
Serial.println("Toggling LED");
if (ledOn)
{
ledOn = false;
digitalWrite(led, LOW);
}
else
{
ledOn = true;
digitalWrite(led, HIGH);
}
request->send(200);
}
void setup()
{
// Setup serial
Serial.begin(115200);
pinMode(led, OUTPUT);
digitalWrite(led, LOW);
// Setup SPIFFS
if (!SPIFFS.begin())
{
Serial.println("SPIFFS error. Exiting.");
return;
}
// List existing files
File root = SPIFFS.open("/");
File file = root.openNextFile();
while (file)
{
Serial.print("File: ");
2022-12-31 20:54:44 +01:00
Serial.println(file.path());
file.close();
file = root.openNextFile();
}
// Wifi
#ifdef B_WIFI_AP
Serial.println("Setting up AP...");
WiFi.softAP(ssid, password);
Serial.print("IP address: ");
Serial.println(WiFi.softAPIP());
#else
Serial.print("Connecting to wifi...");
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED)
{
Serial.print(".");
delay(100);
}
Serial.print("IP address: ");
Serial.println(WiFi.localIP());
#endif
// Server
2022-12-31 20:54:44 +01:00
server.on("/play", HTTP_GET, onPlay);
server.serveStatic("/", SPIFFS, "/www/").setDefaultFile("index.html");
server.begin();
Serial.println("Server ready!");
2022-12-30 19:19:52 +01:00
}
void loop()
{
2022-12-31 20:54:44 +01:00
}