This flow was submitted before accounts existed, so nobody owns it yet. If you submitted it, open the edit link you were given — it still works — and you can attach the flow to an account from there. There is no deadline, and attaching it retires the link for good.
Awtrix Light Nightmode
Puts the clock in night mode
| System | Home Assistant |
|---|---|
| Firmware | AWTRIX 3 |
| Topic | Smarthome |
| Built by | Hank_the_Tank |
| File | VqREgAJBApGm.yaml · 1.3 KB |
| Icons | — |
| Published | 27 Jul 2023 · updated 28 Sep 2023 |
| Downloads | 27 |
In this automation you could define the start/end time for your night mode
***change "topic: awtrix_a8ba90" ***
VqREgAJBApGm.yaml
alias: 🌛 Awtrix Night Mode 🌛
description: ""
trigger:
- platform: time
at: "23:00:00"
id: NM Start
enabled: true
- platform: time
at: "06:00:00"
id: NM End
enabled: true
condition: []
action:
- choose:
- conditions:
- condition: trigger
id:
- NM Start
sequence:
- service: mqtt.publish
data:
qos: 0
retain: false
topic: awtrix_a8ba90/switch
payload: "{\"name\":\"Time\"}"
- service: mqtt.publish
data:
qos: 0
retain: false
topic: awtrix_a8ba90/settings
payload: >-
{ "WD": false, "TIME_COL": [255,0,0], "TMODE": 0, "BRI": 1,
"ABRI": false, "ATRANS": false }
- conditions:
- condition: trigger
id:
- NM End
enabled: true
sequence:
- service: mqtt.publish
data:
qos: 0
retain: false
topic: awtrix_a8ba90/settings
payload: >-
{ "WD": true, "TIME_COL": [255,255,255], "TMODE": 2,
"ABRI": true, "ATRANS": true }
mode: single
More flows for Home Assistant or Smarthome
Something wrong with this flow? Report it.