Anyway to remove power consumption from GE zigbee light switch history

Not really. A little copy/paste and editing. If you haven’t implemented any custom code before, then there’s a small learning curve, but you can check out the FAQ on custom code below.

Basically you’ll create your own version of the GE zigbee switch devicetype by copying the code available on ST’s github or using the From Template option in the IDE (developer area of ST, not intimidating though). Once you do that, you just need to edit the line:

sendEvent(name: “power”, value: powerValue)

and make it say:

sendEvent(name: “power”, value: powerValue, displayed: false)

Then apply that new devicetype to your device.

1 Like