I am trying to create a flow card that will set a setting value on the device.
in the registerRunListener, I am calling this.setSettings
await this.setSettings({
NotificationSettingAllLEDs: 56648716
})
NotificationSettingAllLEDs is the name of the setting.
When the flow card runs, I can see that the homey database is updated with this number, but it doesn’t appear to send that number to the device.
You might be wondering how I know that … Sending this particular number will cause the LEDs on the device to start a pattern. If I send this number using advanced settings, I see the pattern properly. But when I run the flow card, the LEDs do not show the pattern but the value in the Advanced Settings page does change to this number.
This makes me think that setSettings only updates the database and does not push the value to the device. Am I missing a step?
Thanks