Zemismart Smart Energy Sensor

Please update the driver, same version '1.9.7' , new TimeStamp '2024/07/05 7:56 AM'

2 Likes

@m112 @vctgomes when you have the chance, please let me know whether the latest version worked OK with your devices, so that I add it to the HPM production version and close this update.

1 Like

I'm using it. Working fine here

Apologies for the delay. The voltage spike's resolved, but I still get 1/10th the actual power reported.

I was able to fix it by changing:

private int getPowerDiv() { (isThirdRealityUS() || isThirdRealityEU() || isSengledOutlet() || isJascoProductsOutlet() || isSmartThingsOutlet() || (isTuyaSpecificCluster() || isPJ1203A() && !(isDinRail() || isRTXCircuitBreaker() || isSPM01()))) ? 10 : 1 }

To:

private int getPowerDiv() { (isThirdRealityUS() || isThirdRealityEU() || isSengledOutlet() || isJascoProductsOutlet() || isSmartThingsOutlet() || (isTuyaSpecificCluster() || isPJ1203A() && !(isDinRail() || isRTXCircuitBreaker()))) && !isSPM01() ? 10 : 1 }

Thanks again!