Sengled E13-N11 Exposed Settings

Was hoping to keep driveway lights on for trick-or-treaters. The E13-N11 motion light bulb doesn't seem to have the option to stay on indefinitely, however the firmware seems to have an on_time and off_time setting that are not currently exposed by the built in driver. Not clear to me how long the on_time can be set to, and if its possible set this outside the device settings. Thoughts?

If you can point to where this is documented -- specifically, the Zigbee cluster, attribute, and values that do what you want -- it's likely this could be added to the driver.

This might be what I'm looking for:

binary({
name: 'enable_auto_on_off',
cluster: 'manuSpecificSengledMotionSensor',
attribute: 'enableAutoOnOff',
description: 'Enable the PAR38 bulb to turn on automatically when motion is detected',
valueOn: [true, 0x01],
valueOff: [false, 0x00],
zigbeeCommandOptions: {manufacturerCode: 0x1160},
access: 'STATE_SET',
})

I realized I never just tried turning it on manually to see what happened..doh. Seems to work during the day, but I'll double check tonight, I suspect the auto on off is only used when the ambient light is low enough.

1 Like

Tried at night, seems to stay on when turned on manaully even after triggering motion sensor.