Zigbee device (GE Light) actual status

@NorCalLights and @bobfrankston , Pollster will work with any device as long as Polling is included in the device type’s capabilities: capability "Polling", and Poll() actually does something. Have you seen the thread on an improved custom device type for these GE bulbs?

In the case of these bulbs, Poll() in this custom device type looks like this:

def poll() {

[
"st rattr 0x${device.deviceNetworkId} 1 6 0", "delay 500",
"st rattr 0x${device.deviceNetworkId} 1 8 0", "delay 500",
"st wattr 0x${device.deviceNetworkId} 1 8 0x10 0x21 {${state.dOnOff}}"
]

}