diff --git a/CHANGELOG.md b/CHANGELOG.md index 380648d72..ba7048cd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file. - Berry `webclient` `set_follow_redirects(bool)` - Berry `webclient` `collect_headers()` and `set_headers` - Display TM1650 commands like TM1637 (#18109) +- Berry add `web_get_arg` event to drivers when `FUNC_WEB_GET_ARG` event is processed ### Breaking Changed - Shelly Pro 4PM using standard MCP23xxx driver and needs one time Auto-Configuration diff --git a/tasmota/tasmota_xdrv_driver/xdrv_52_9_berry.ino b/tasmota/tasmota_xdrv_driver/xdrv_52_9_berry.ino index 8bee89061..6ee7437b1 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_52_9_berry.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_52_9_berry.ino @@ -802,6 +802,9 @@ bool Xdrv52(uint32_t function) case FUNC_WEB_SENSOR: callBerryEventDispatcher(PSTR("web_sensor"), nullptr, 0, nullptr); break; + case FUNC_WEB_GET_ARG: + callBerryEventDispatcher(PSTR("web_get_arg"), nullptr, 0, nullptr); + break; case FUNC_JSON_APPEND: callBerryEventDispatcher(PSTR("json_append"), nullptr, 0, nullptr);