Configurações

⚙️ Configurações do Sistema

Frequência de atualização dos dados no dashboard
🕐 Ajusta o timestamp de todos os comandos enviados ao ESP32
⏰ Hora atual no fuso selecionado:
--:--:--

🔔 Notificações

Notificar quando um relay ficar offline
Notificar quando temperatura exceder limite

⚡ Configurações de Energia

Valor usado para cálculos de economia
Ajustar automaticamente intensidade das luzes

🗺️ Configurações do Mapa

📲 OTA Firmware Update

Upload ESP32 firmware binary files for Over-The-Air updates. Only .bin files are accepted.
📦 relay_015.bin
Size: 1.72 MB • Modified: 2026-01-20 02:16:09
📦 relay_018.bin
Size: 1.72 MB • Modified: 2026-01-14 01:55:28

ESP32 Code Example:

#include <HTTPUpdate.h>

void performOTA() {
    WiFiClient client;
    String url = "http://192.168.1.112:8080/firmware/your_firmware.bin";
    t_httpUpdate_return ret = httpUpdate.update(client, url);
    
    if (ret == HTTP_UPDATE_OK) {
        Serial.println("OTA successful! Rebooting...");
    }
}

Endpoints:

  • GET /firmware/list - List all firmware files
  • GET /firmware/<filename> - Download firmware (for ESP32)
  • POST /firmware - Upload new firmware

📡 Multi-MAC Commands

Generated MAC addresses in ESP32 format. Click to edit individual addresses if needed.