[tasmatoplug] Fix command mapping for power channel 3 (#20109)

Signed-off-by: Christian Heldt <snaut@tutanota.com>
This commit is contained in:
Christian Heldt
2026-01-21 20:33:17 +01:00
committed by GitHub
parent ce7bd50de1
commit e8012a2d47
@@ -70,7 +70,7 @@ public class TasmotaPlugBindingConstants {
VOLT_AMPERE_REACTIVE, POWER_FACTOR, ENERGY_TODAY, ENERGY_YESTERDAY, ENERGY_TOTAL, ENERGY_TOTAL_START);
// Map of the channel ids to tasmota command strings
public static final Map<String, String> COMMAND_MAP = Map.of(POWER, "Power", POWER2, "Power2", "POWER3", "Power3",
public static final Map<String, String> COMMAND_MAP = Map.of(POWER, "Power", POWER2, "Power2", POWER3, "Power3",
POWER4, "Power4", PULSE_TIME, "PulseTime", PULSE_TIME2, "PulseTime2", PULSE_TIME3, "PulseTime3",
PULSE_TIME4, "PulseTime4");
}