mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-26 20:26:32 +00:00
Berry add web_get_arg
event to drivers when FUNC_WEB_GET_ARG
event is processed (#18175)
This commit is contained in:
parent
ded60556e2
commit
0bc48d16c2
@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
- Berry `webclient` `set_follow_redirects(bool)`
|
- Berry `webclient` `set_follow_redirects(bool)`
|
||||||
- Berry `webclient` `collect_headers()` and `set_headers`
|
- Berry `webclient` `collect_headers()` and `set_headers`
|
||||||
- Display TM1650 commands like TM1637 (#18109)
|
- Display TM1650 commands like TM1637 (#18109)
|
||||||
|
- Berry add `web_get_arg` event to drivers when `FUNC_WEB_GET_ARG` event is processed
|
||||||
|
|
||||||
### Breaking Changed
|
### Breaking Changed
|
||||||
- Shelly Pro 4PM using standard MCP23xxx driver and needs one time Auto-Configuration
|
- Shelly Pro 4PM using standard MCP23xxx driver and needs one time Auto-Configuration
|
||||||
|
@ -802,6 +802,9 @@ bool Xdrv52(uint32_t function)
|
|||||||
case FUNC_WEB_SENSOR:
|
case FUNC_WEB_SENSOR:
|
||||||
callBerryEventDispatcher(PSTR("web_sensor"), nullptr, 0, nullptr);
|
callBerryEventDispatcher(PSTR("web_sensor"), nullptr, 0, nullptr);
|
||||||
break;
|
break;
|
||||||
|
case FUNC_WEB_GET_ARG:
|
||||||
|
callBerryEventDispatcher(PSTR("web_get_arg"), nullptr, 0, nullptr);
|
||||||
|
break;
|
||||||
|
|
||||||
case FUNC_JSON_APPEND:
|
case FUNC_JSON_APPEND:
|
||||||
callBerryEventDispatcher(PSTR("json_append"), nullptr, 0, nullptr);
|
callBerryEventDispatcher(PSTR("json_append"), nullptr, 0, nullptr);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user