Tasmota/tasmota/tasmota_xdrv_driver/xdrv_121_gpioviewer.ino

524 lines
17 KiB
Arduino
Raw Normal View History

/*
xdrv_121_gpioviewer.ino - GPIOViewer for Tasmota
2024-01-08 21:16:33 +00:00
SPDX-FileCopyrightText: 2024 Theo Arends, Stephan Hadinger and Charles Giguere
SPDX-License-Identifier: GPL-3.0-only
*/
#ifdef USE_GPIO_VIEWER
/*********************************************************************************************\
2024-01-08 21:16:33 +00:00
* GPIOViewer support based on work by Charles Giguere
*
2024-01-08 21:16:33 +00:00
* Resources:
* GPIO Viewer: https://github.com/thelastoutpostworkshop/gpio_viewer
* Server Sent Event: https://github.com/esp8266/Arduino/issues/7008
\*********************************************************************************************/
#define XDRV_121 121
2024-01-27 22:58:00 +00:00
//#define GV_INPUT_DETECTION // Report type of digital input
#define GV_USE_ESPINFO // Provide ESP info
#ifdef ESP32
#ifndef GV_USE_ESPINFO
#define GV_USE_ESPINFO // Provide ESP info
#endif
#endif
#ifndef GV_PORT
2024-01-13 15:11:40 +00:00
#define GV_PORT 5557 // SSE webserver port
#endif
#ifndef GV_SAMPLING_INTERVAL
2024-01-13 15:11:40 +00:00
#define GV_SAMPLING_INTERVAL 100 // [GvSampling] milliseconds - Use Tasmota Scheduler (100) or Ticker (20..99,101..1000)
#endif
2024-01-13 15:11:40 +00:00
#define GV_KEEP_ALIVE 1000 // milliseconds - If no activity after this do a heap size event anyway
#ifndef GV_BASE_URL
2024-01-27 22:58:00 +00:00
#define GV_BASE_URL "https://thelastoutpostworkshop.github.io/microcontroller_devkit/gpio_viewer_1_5/"
2024-01-12 11:17:31 +00:00
#endif
2024-01-27 22:58:00 +00:00
const char *GVRelease = "1.5.0";
2024-01-07 17:10:30 +00:00
2024-01-13 14:16:34 +00:00
#ifdef USE_UNISHOX_COMPRESSION
2024-01-28 16:34:15 +00:00
#include "./html_compressed/HTTP_GV_PAGE.h"
2024-01-13 14:16:34 +00:00
#else
2024-01-28 16:34:15 +00:00
#include "./html_uncompressed/HTTP_GV_PAGE.h"
2024-01-13 14:16:34 +00:00
#endif
2024-01-06 20:57:09 +00:00
const char HTTP_GV_EVENT[] PROGMEM =
"HTTP/1.1 200 OK\n"
2024-01-13 15:11:40 +00:00
"Content-Type: text/event-stream;\n" // Server Sent Event protocol
"Connection: keep-alive\n" // Permanent connection
"Cache-Control: no-cache\n" // Do not store data into local cache
"Access-Control-Allow-Origin: *\n\n"; // Enable CORS
2024-01-06 20:57:09 +00:00
enum GVPinTypes {
2024-01-08 21:16:33 +00:00
GV_DigitalPin = 0,
GV_PWMPin = 1,
2024-01-27 22:58:00 +00:00
GV_AnalogPin = 2,
#ifdef GV_INPUT_DETECTION
GV_InputPin = 3,
GV_InputPullUp = 4,
GV_InputPullDn = 5
#endif // GV_INPUT_DETECTION
};
struct {
WiFiClient WebClient;
ESP8266WebServer *WebServer;
Ticker ticker;
2024-01-09 13:58:33 +00:00
int lastPinStates[MAX_GPIO_PIN];
2024-01-08 21:16:33 +00:00
uint32_t lastSentWithNoActivity;
uint32_t freeHeap;
uint32_t freePSRAM;
uint32_t sampling;
bool active;
2024-01-09 13:58:33 +00:00
bool sse_ready;
} GV;
2024-01-27 22:58:00 +00:00
#ifdef GV_INPUT_DETECTION
int GetPinMode(uint8_t pin) {
#ifdef ESP8266
if (pin > MAX_GPIO_PIN -2) { return -1; } // Skip GPIO16 and Analog0
#endif // ESP8266
#ifdef ESP32
if (pin > MAX_GPIO_PIN) { return -1; }
#endif // ESP32
uint32_t bit = digitalPinToBitMask(pin);
uint32_t port = digitalPinToPort(pin);
volatile uint32_t *reg = portModeRegister(port);
if (*reg & bit) { return OUTPUT; } // ESP8266 = 0x01, ESP32 = 0x03
volatile uint32_t *out = portOutputRegister(port);
return ((*out & bit) ? INPUT_PULLUP : INPUT); // ESP8266 = 0x02 : 0x00, ESP32 = 0x05 : x01
}
#endif // GV_INPUT_DETECTION
2024-01-12 15:54:24 +00:00
void GVStop(void) {
GV.sse_ready = false;
GV.ticker.detach();
GV.active = false;
GV.WebServer->stop();
GV.WebServer = nullptr;
}
void GVBegin(void) {
if (0 == GV.sampling) {
GV.sampling = (GV_SAMPLING_INTERVAL < 20) ? 20 : GV_SAMPLING_INTERVAL;
}
GV.WebServer = new ESP8266WebServer(GV_PORT);
// Set CORS headers for global responses
2024-01-13 14:16:34 +00:00
// GV.WebServer->sendHeader(F("Access-Control-Allow-Origin"), F("*"));
// GV.WebServer->sendHeader(F("Access-Control-Allow-Methods"), F("GET, POST, OPTIONS"));
// GV.WebServer->sendHeader(F("Access-Control-Allow-Headers"), F("Content-Type"));
GV.WebServer->on("/", GVHandleRoot);
GV.WebServer->on("/release", GVHandleRelease);
GV.WebServer->on("/free_psram", GVHandleFreePSRam);
2024-01-27 22:58:00 +00:00
GV.WebServer->on("/sampling", GVHandleSampling);
GV.WebServer->on("/espinfo", GVHandleEspInfo);
GV.WebServer->on("/partition", GVHandlePartition);
2024-01-12 15:54:24 +00:00
GV.WebServer->on("/events", GVHandleEvents);
GV.WebServer->begin();
GV.active = true;
}
void GVHandleRoot(void) {
2024-01-12 15:54:24 +00:00
GVCloseEvent();
char* content = ext_snprintf_malloc_P(HTTP_GV_PAGE,
SettingsTextEscaped(SET_DEVICENAME).c_str(),
2024-01-13 14:16:34 +00:00
GV_BASE_URL,
WiFi.localIP().toString().c_str(),
2024-01-27 22:58:00 +00:00
GV_PORT,
ESP_getFreeSketchSpace() / 1024);
2024-01-13 15:11:40 +00:00
if (content == nullptr) { return; } // Avoid crash
GV.WebServer->send_P(200, "text/html", content);
free(content);
}
2024-01-27 22:58:00 +00:00
void GVWebserverSendJson(String &jsonResponse) {
GV.WebServer->send(200, "application/json", jsonResponse);
}
void GVHandleRelease(void) {
String jsonResponse = "{\"release\":\"" + String(GVRelease) + "\"}";
2024-01-27 22:58:00 +00:00
GVWebserverSendJson(jsonResponse);
}
void GVHandleFreePSRam(void) {
String jsonResponse = "{\"freePSRAM\":\"";
#ifdef ESP32
if (UsePSRAM()) {
jsonResponse += String(ESP.getFreePsram() / 1024) + " KB\"}";
} else
#endif
jsonResponse += "No PSRAM\"}";
2024-01-27 22:58:00 +00:00
GVWebserverSendJson(jsonResponse);
}
void GVHandleSampling(void) {
2024-01-28 16:34:15 +00:00
String jsonResponse = "{\"sampling\":\"" + String(GV.sampling) + "\"}";
2024-01-27 22:58:00 +00:00
GVWebserverSendJson(jsonResponse);
}
void GVHandleEspInfo(void) {
#ifdef GV_USE_ESPINFO
const FlashMode_t flashMode = ESP.getFlashChipMode(); // enum
String jsonResponse = "{\"chip_model\":\"" + GetDeviceHardware();
jsonResponse += "\",\"cores_count\":\"" + String(ESP_getChipCores());
jsonResponse += "\",\"chip_revision\":\"" + String(ESP_getChipRevision());
jsonResponse += "\",\"cpu_frequency\":\"" + String(ESP.getCpuFreqMHz());
jsonResponse += "\",\"cycle_count\":" + String(ESP.getCycleCount());
jsonResponse += ",\"mac\":\"" + ESP_getEfuseMac();
jsonResponse += "\",\"flash_mode\":" + String(flashMode);
#ifdef ESP8266
jsonResponse += ",\"flash_chip_size\":" + String(ESP.getFlashChipRealSize());
#else
jsonResponse += ",\"flash_chip_size\":" + String(ESP.getFlashChipSize());
#endif
jsonResponse += ",\"flash_chip_speed\":" + String(ESP.getFlashChipSpeed());
jsonResponse += ",\"heap_size\":" + String(ESP_getHeapSize());
jsonResponse += ",\"heap_max_alloc\":" + String(ESP_getMaxAllocHeap());
jsonResponse += ",\"psram_size\":" + String(ESP_getPsramSize());
jsonResponse += ",\"free_psram\":" + String(ESP_getFreePsram());
jsonResponse += ",\"psram_max_alloc\":" + String(ESP_getMaxAllocPsram());
jsonResponse += ",\"free_heap\":" + String(ESP_getFreeHeap());
jsonResponse += ",\"up_time\":\"" + String(millis());
jsonResponse += "\",\"sketch_size\":" + String(ESP_getSketchSize());
jsonResponse += ",\"free_sketch\":" + String(ESP_getFreeSketchSpace());
jsonResponse += "}";
#else
String jsonResponse = "{\"chip_model\":\"" + GetDeviceHardware() + "\"}";
#endif // GV_USE_ESPINFO
GVWebserverSendJson(jsonResponse);
}
void GVHandlePartition(void) {
String jsonResponse = "["; // Start of JSON array
#ifdef ESP32
bool firstEntry = true; // Used to format the JSON array correctly
esp_partition_iterator_t iter = esp_partition_find(ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_ANY, NULL);
// esp_partition_iterator_t iter = esp_partition_find(ESP_PARTITION_TYPE_ANY, ESP_PARTITION_SUBTYPE_ANY, NULL);
// Loop through partitions
while (iter != NULL) {
const esp_partition_t *partition = esp_partition_get(iter);
// Add comma before the next entry if it's not the first
if (!firstEntry)
{
jsonResponse += ",";
}
firstEntry = false;
// Append partition information in JSON format
jsonResponse += "{";
jsonResponse += "\"label\":\"" + String(partition->label) + "\",";
jsonResponse += "\"type\":" + String(partition->type) + ",";
jsonResponse += "\"subtype\":" + String(partition->subtype) + ",";
jsonResponse += "\"address\":\"0x" + String(partition->address, HEX) + "\",";
jsonResponse += "\"size\":" + String(partition->size);
jsonResponse += "}";
// Move to next partition
iter = esp_partition_next(iter);
}
// Clean up the iterator
esp_partition_iterator_release(iter);
#endif // ESP32
jsonResponse += "]"; // End of JSON array
GVWebserverSendJson(jsonResponse);
}
2024-01-12 15:54:24 +00:00
void GVHandleEvents(void) {
GV.WebClient = GV.WebServer->client();
GV.WebClient.setNoDelay(true);
// GV.WebClient.setSync(true);
GV.WebServer->setContentLength(CONTENT_LENGTH_UNKNOWN); // The payload can go on forever
GV.WebServer->sendContent_P(HTTP_GV_EVENT);
GV.sse_ready = true; // Ready for async updates
if (GV.sampling != 100) {
GV.ticker.attach_ms(GV.sampling, GVMonitorTask); // Use Tasmota Scheduler (100) or Ticker (20..99,101..1000)
}
AddLog(LOG_LEVEL_DEBUG, PSTR("IOV: Connected"));
}
void GVEventDisconnected(void) {
if (GV.sse_ready) {
AddLog(LOG_LEVEL_DEBUG, PSTR("IOV: Disconnected"));
}
2024-01-13 14:16:34 +00:00
GV.sse_ready = false; // This just stops the event to be restarted by opening root page again
2024-01-12 15:54:24 +00:00
GV.ticker.detach();
}
void GVCloseEvent(void) {
2024-01-28 17:32:34 +00:00
GVEventSend("{}", "close", millis()); // Closes web page
2024-01-12 15:54:24 +00:00
GVEventDisconnected();
}
2024-01-06 20:57:09 +00:00
//void GVEventSend(const char *message, const char *event=NULL, uint32_t id=0, uint32_t reconnect=0);
void GVEventSend(const char *message, const char *event, uint32_t id) {
if (GV.WebClient.connected()) {
// generateEventMessage() in AsyncEventSource.cpp
// GV.WebClient.printf_P(PSTR("retry:1000\nid:%u\nevent:%s\ndata:%s\n\n"), id, event, message);
2024-01-13 15:11:40 +00:00
GV.WebClient.printf_P(PSTR("id:%u\nevent:%s\ndata:%s\n\n"), id, event, message);
} else {
2024-01-12 15:54:24 +00:00
GVEventDisconnected();
}
}
void GVMonitorTask(void) {
2024-01-09 13:58:33 +00:00
// Monitor GPIO Values
uint32_t originalValue;
uint32_t pintype;
bool hasChanges = false;
2024-01-09 13:58:33 +00:00
2024-01-08 21:16:33 +00:00
String jsonMessage = "{";
for (uint32_t pin = 0; pin < MAX_GPIO_PIN; pin++) {
2024-01-09 13:58:33 +00:00
int currentState = 0;
/*
2024-01-12 11:17:31 +00:00
// Skip unconfigured GPIO
2024-01-09 13:58:33 +00:00
uint32_t pin_type = GetPin(pin) / 32;
if (GPIO_NONE == pin_type) {
pintype = GV_DigitalPin;
originalValue = 0;
// currentState = 0;
}
*/
#ifdef ESP32
2024-01-12 11:17:31 +00:00
// Read PWM GPIO
2024-01-09 13:58:33 +00:00
int pwm_resolution = ledcReadDutyResolution(pin);
if (pwm_resolution > 0) {
pintype = GV_PWMPin;
originalValue = ledcRead2(pin);
2024-01-13 14:16:34 +00:00
currentState = changeUIntScale(originalValue, 0, pwm_resolution, 0, 255); // Bring back to 0..255
2024-01-09 13:58:33 +00:00
}
#endif // ESP32
#ifdef ESP8266
2024-01-12 11:17:31 +00:00
// Read PWM GPIO
2024-01-09 13:58:33 +00:00
int pwm_value = AnalogRead(pin);
if (pwm_value > -1) {
pintype = GV_PWMPin;
originalValue = pwm_value;
2024-01-13 14:16:34 +00:00
currentState = changeUIntScale(originalValue, 0, Settings->pwm_range, 0, 255); // Bring back to 0..255
2024-01-09 13:58:33 +00:00
}
#endif // ESP8266
#ifdef USE_ADC
2024-01-09 13:58:33 +00:00
else if (AdcPin(pin)) {
2024-01-12 11:17:31 +00:00
// Read Analog (ADC) GPIO
2024-01-09 13:58:33 +00:00
pintype = GV_AnalogPin;
2024-01-12 11:17:31 +00:00
/*
#ifdef ESP32
2024-01-09 13:58:33 +00:00
originalValue = AdcRead(pin, 2);
2024-01-12 11:17:31 +00:00
#endif // ESP32
#ifdef ESP8266
2024-01-13 14:16:34 +00:00
// Fix exception 9 if using ticker - GV.sampling != 100 caused by delay(1) in AdcRead() (CallChain: (phy)pm_wakeup_init, (adc)test_tout, ets_timer_arm_new, delay, AdcRead, String6concat, MonitorTask)
2024-01-12 11:17:31 +00:00
originalValue = (GV.sampling != 100) ? analogRead(pin) : AdcRead(pin, 1);
#endif // ESP8266
*/
originalValue = AdcRead1(pin);
2024-01-13 14:16:34 +00:00
currentState = changeUIntScale(originalValue, 0, AdcRange(), 0, 255); // Bring back to 0..255
2024-01-12 11:17:31 +00:00
}
#endif // USE_ADC
2024-01-12 11:17:31 +00:00
else {
// Read digital GPIO
2024-01-09 13:58:33 +00:00
int value = digitalRead(pin);
originalValue = value;
if (value == 1) {
currentState = 256;
// } else {
// currentState = 0;
2024-01-09 13:58:33 +00:00
}
2024-01-27 22:58:00 +00:00
#ifdef GV_INPUT_DETECTION
int pin_mode = GetPinMode(pin);
pintype = (INPUT == pin_mode) ? GV_InputPin : (INPUT_PULLUP == pin_mode) ? GV_InputPullUp : GV_DigitalPin;
#else
pintype = GV_DigitalPin;
#endif
2024-01-09 13:58:33 +00:00
}
if (originalValue != GV.lastPinStates[pin]) {
2024-01-08 21:16:33 +00:00
if (hasChanges) { jsonMessage += ","; }
2024-01-09 13:58:33 +00:00
jsonMessage += "\"" + String(pin) + "\":{\"s\":" + currentState + ",\"v\":" + originalValue + ",\"t\":" + pintype + "}";
GV.lastPinStates[pin] = originalValue;
hasChanges = true;
}
}
jsonMessage += "}";
if (hasChanges) {
2024-01-06 20:57:09 +00:00
GVEventSend(jsonMessage.c_str(), "gpio-state", millis());
}
uint32_t heap = ESP_getFreeHeap();
if (heap != GV.freeHeap) {
2024-01-13 14:16:34 +00:00
// Send freeHeap
GV.freeHeap = heap;
2024-01-07 15:06:31 +00:00
char temp[20];
snprintf_P(temp, sizeof(temp), PSTR("%d KB"), heap / 1024);
GVEventSend(temp, "free_heap", millis());
2024-01-08 21:16:33 +00:00
hasChanges = true;
}
#ifdef ESP32
if (UsePSRAM()) {
2024-01-13 14:16:34 +00:00
// Send freePsram
uint32_t psram = ESP.getFreePsram();
if (psram != GV.freePSRAM) {
GV.freePSRAM = psram;
2024-01-07 15:06:31 +00:00
char temp[20];
snprintf_P(temp, sizeof(temp), PSTR("%d KB"), psram / 1024);
GVEventSend(temp, "free_psram", millis());
2024-01-08 21:16:33 +00:00
hasChanges = true;
}
}
#endif // ESP32
2024-01-08 21:16:33 +00:00
if (!hasChanges) {
2024-01-13 14:16:34 +00:00
// Send freeHeap as keepAlive
2024-01-08 21:16:33 +00:00
uint32_t last_sent = millis() - GV.lastSentWithNoActivity;
if (last_sent > GV_KEEP_ALIVE) {
// No activity, resending for pulse
char temp[20];
snprintf_P(temp, sizeof(temp), PSTR("%d KB"), heap / 1024);
GVEventSend(temp, "free_heap", millis());
GV.lastSentWithNoActivity = millis();
}
} else {
GV.lastSentWithNoActivity = millis();
}
}
/*********************************************************************************************\
* Commands
\*********************************************************************************************/
2024-01-06 20:57:09 +00:00
2024-01-13 15:11:40 +00:00
const char kGVCommands[] PROGMEM = "GV|" // Prefix
"Viewer|Sampling";
void (* const GVCommand[])(void) PROGMEM = {
&CmndGvViewer, &CmndGvSampling };
void CmndGvViewer(void) {
/* GvViewer - Show current viewer state
GvViewer 0 - Turn viewer off
GvViewer 1 - Turn viewer On
GvViewer 2 - Toggle viewer state
*/
if ((XdrvMailbox.payload >= 0) && (XdrvMailbox.payload <= 2)) {
uint32_t state = XdrvMailbox.payload;
2024-01-13 15:11:40 +00:00
if (2 == state) { // Toggle
state = GV.active ^1;
}
2024-01-13 15:11:40 +00:00
if (state) { // On
GVBegin();
2024-01-13 15:11:40 +00:00
} else { // Off
GVCloseEvent(); // Stop current updates
GVStop();
}
}
if (GV.active) {
Response_P(PSTR("{\"%s\":\"Active on http://%s:" STR(GV_PORT) "/\"}"), XdrvMailbox.command, WiFi.localIP().toString().c_str());
} else {
ResponseCmndChar_P(PSTR("Stopped"));
}
}
void CmndGvSampling(void) {
/* GvSampling - Show current sampling interval
GvSampling 20 .. 1000 - Set sampling interval
*/
if ((XdrvMailbox.payload >= 20) && (XdrvMailbox.payload <= 1000)) {
2024-01-13 15:11:40 +00:00
GVCloseEvent(); // Stop current updates
GV.sampling = XdrvMailbox.payload; // 20 - 1000 milliseconds
}
ResponseCmndNumber(GV.sampling);
}
2024-01-09 13:58:33 +00:00
/*********************************************************************************************\
* GUI
\*********************************************************************************************/
#ifdef USE_WEBSERVER
2024-01-18 14:55:59 +00:00
#define WEB_HANDLE_GV "gv"
2024-01-09 13:58:33 +00:00
const char HTTP_BTN_MENU_GV[] PROGMEM =
"<p><form action='" WEB_HANDLE_GV "' method='get' target='_blank'><button>" D_GPIO_VIEWER "</button></form></p>";
void GVSetupAndStart(void) {
if (!HttpCheckPriviledgedAccess()) { return; }
AddLog(LOG_LEVEL_DEBUG, PSTR(D_LOG_HTTP D_GPIO_VIEWER));
2024-01-12 15:54:24 +00:00
if (!GV.active) { // WebServer not started
2024-01-09 13:58:33 +00:00
GVBegin();
}
char redirect[100];
snprintf_P(redirect, sizeof(redirect), PSTR("http://%s:" STR(GV_PORT) "/"), WiFi.localIP().toString().c_str());
Webserver->sendHeader(F("Location"), redirect);
Webserver->send(303);
}
#endif // USE_WEBSERVER
/*********************************************************************************************\
* Interface
\*********************************************************************************************/
bool Xdrv121(uint32_t function) {
bool result = false;
2024-01-09 13:58:33 +00:00
switch (function) {
case FUNC_COMMAND:
result = DecodeCommand(kGVCommands, GVCommand);
break;
2024-01-09 13:58:33 +00:00
#ifdef USE_WEBSERVER
case FUNC_WEB_ADD_MANAGEMENT_BUTTON:
if (XdrvMailbox.index) {
XdrvMailbox.index++;
} else {
WSContentSend_PD(HTTP_BTN_MENU_GV);
}
break;
case FUNC_WEB_ADD_HANDLER:
2024-01-18 14:55:59 +00:00
WebServer_on(PSTR("/" WEB_HANDLE_GV), GVSetupAndStart);
2024-01-09 13:58:33 +00:00
break;
#endif // USE_WEBSERVER
}
if (GV.active) {
switch (function) {
case FUNC_LOOP:
if (GV.WebServer) { GV.WebServer->handleClient(); }
break;
case FUNC_EVERY_100_MSECOND:
if (GV.sse_ready && (100 == GV.sampling)) {
GVMonitorTask();
}
break;
case FUNC_SAVE_BEFORE_RESTART:
GVCloseEvent(); // Stop current updates
break;
case FUNC_ACTIVE:
result = true;
break;
}
}
return result;
}
#endif // USE_GPIO_VIEWER