From f7cf94b929c40618c9d36468bc3ec0f950c433b1 Mon Sep 17 00:00:00 2001 From: s-hadinger <49731213+s-hadinger@users.noreply.github.com> Date: Mon, 11 Dec 2023 21:22:20 +0100 Subject: [PATCH] Remove Berry `every_200ms` event which didn't work anyways (#20205) --- CHANGELOG.md | 1 + tasmota/tasmota_xdrv_driver/xdrv_52_9_berry.ino | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bdda3592..3e5c75a7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file. - Command ``WebCanvas linear-gradient(#F02 7%,#F93,#FF4,#082,#00F,#708 93%)`` to set GUI canvas ### Breaking Changed +- Remove Berry `every_200ms` event which didn't work anyways ### Changed - ESP32 LVGL library from v8.3.10 to v8.3.11 (no functional change) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_52_9_berry.ino b/tasmota/tasmota_xdrv_driver/xdrv_52_9_berry.ino index b31b17ade..a075a2e8d 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_52_9_berry.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_52_9_berry.ino @@ -906,9 +906,6 @@ bool Xdrv52(uint32_t function) case FUNC_EVERY_100_MSECOND: callBerryEventDispatcher(PSTR("every_100ms"), nullptr, 0, nullptr); break; - case FUNC_EVERY_200_MSECOND: - callBerryEventDispatcher(PSTR("every_200ms"), nullptr, 0, nullptr); - break; case FUNC_EVERY_250_MSECOND: callBerryEventDispatcher(PSTR("every_250ms"), nullptr, 0, nullptr); break;