From b0cfeb3a2c5e9b80c64d7573f6b7525e40db3174 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Mon, 26 Sep 2022 17:14:17 +0200 Subject: [PATCH] Remove unneeded delay --- tasmota/tasmota_xlgt_light/xlgt_04_sm2135.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasmota/tasmota_xlgt_light/xlgt_04_sm2135.ino b/tasmota/tasmota_xlgt_light/xlgt_04_sm2135.ino index 1b6a00b0f..8a69a9239 100644 --- a/tasmota/tasmota_xlgt_light/xlgt_04_sm2135.ino +++ b/tasmota/tasmota_xlgt_light/xlgt_04_sm2135.ino @@ -201,14 +201,14 @@ bool Sm2135SetChannels(void) { if (light_type &2) { // Set RGB Sm2135SetRGB(cur_col[0], cur_col[1], cur_col[2]); if (!light_type &1) { - delay(1); +// delay(1); Sm2135SetCW(0, 0); // Clear CW } } if (light_type &1) { // Set CW if (!light_type &2) { - Sm2135SetRGB(0, 0, 0); // CLear RGB - delay(1); + Sm2135SetRGB(0, 0, 0); // Clear RGB +// delay(1); } Sm2135SetCW(cur_col[3], cur_col[4]); }