#include "esp32_ethernet.hpp" #include "rest.hpp" //#include "mpod.hpp" unsigned long start; extern bool eth_connected; //extern SNMP::Manager snmp; void setup() { Serial.begin(115200); connectNetwork(); while (!eth_connected) { Serial.print("-"); delay(100); } initializeRoutes(); Serial.println("Started REST server"); start = millis(); } enum { NONE, ON, OFF, }; void serial_loop() { if (Serial.available()) { uint8_t output = NONE; // Read command from serial String string = Serial.readString(); string.toLowerCase(); // Only two commands if (string == "on") { output = ON; } else if (string == "off") { output = OFF; } Serial.print(output); } } void loop() { // Manager loop function must be called to process incoming messages //snmp.loop(); restServer.handleClient(); serial_loop(); if (millis() - start >= 1000) { start = millis(); Serial.print("."); } }