From c20bb9ab58f85819a0640894e91865c6756e3e7d Mon Sep 17 00:00:00 2001 From: Janusz Kostorz <48957313+jkostorz@users.noreply.github.com> Date: Thu, 4 Jun 2020 22:27:30 +0200 Subject: [PATCH] increasing in color temperature change speed --- tasmota/support_rotary.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/support_rotary.ino b/tasmota/support_rotary.ino index 25c064a18..6d79744f4 100644 --- a/tasmota/support_rotary.ino +++ b/tasmota/support_rotary.ino @@ -117,7 +117,7 @@ void RotaryHandler(void) Rotary.changed = 1; // button1 is pressed: set color temperature int16_t t = LightGetColorTemp(); - t = t + (Rotary.position - Rotary.last_position); + t = t + ((Rotary.position - Rotary.last_position) * 4); if (t < 153) { t = 153; }