From 9a06e515f2746e69e98a70ba0981ebacb31a3c57 Mon Sep 17 00:00:00 2001 From: Chris Aumann Date: Mon, 4 May 2026 23:22:10 +0200 Subject: [PATCH] Add support for Shelly 3EM devices --- packages/modules/smarthome/shelly/watt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/modules/smarthome/shelly/watt.py b/packages/modules/smarthome/shelly/watt.py index 166e57ff0e..4900eada0e 100644 --- a/packages/modules/smarthome/shelly/watt.py +++ b/packages/modules/smarthome/shelly/watt.py @@ -116,7 +116,7 @@ def totalPowerFromShellyJson(answer: Any, workchan: int) -> int: else: workchan = chan sw = 'switch:' + str(workchan) - if ("SPEM-003CE" in model): + if ("SPEM-003CE" in model or "S3EM-003CXCEU63" in model): if (workchan == 1): aktpower = int(answer['em:0']['a_act_power']) elif (workchan == 2):