initial firmware r1

This commit is contained in:
Siwat Sirichai 2024-10-08 23:28:31 +07:00
parent a7e4832b7a
commit 410821e898
1 changed files with 1 additions and 4 deletions

View File

@ -29,9 +29,6 @@ void setup()
// Enable Web Server
ESP_LOGV("OS", "Enabling Web Server");
espmega.enableWebServer(80);
ESP_LOGV("OS", "Initializing Internal Display");
espmega.enableInternalDisplay(&INTERNAL_DISPLAY_UART);
// Register all cards with iot
ESP_LOGV("OS", "Registering Cards with IoT");
espmega.iot->registerCard(0);
@ -45,5 +42,5 @@ void loop()
void input_callback(uint8_t pin, uint8_t state)
{
espmega.outputs.toggleState(pin);
}