You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 1, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+21-1Lines changed: 21 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -229,6 +229,8 @@ _Configuration variables:_
229
229
230
230
**duration** (Optional, minutes): lifetime of a screen in minutes (default=5). If not updates a screen will be removed after ```duration``` minutes
231
231
232
+
**hold_time** (Optional, seconds): extends the display time of the current screen in seconds (default=20)
233
+
232
234
**date_format** (Optional, string): formats the date display with [strftime syntax](https://esphome.io/components/time.html?highlight=strftime), defaults `"%d.%m."` (use `"%m.%d."` for the US)
233
235
234
236
**time_format** (Optional, string): formats the date display with [strftime syntax](https://esphome.io/components/time.html?highlight=strftime), defaults `"%H:%M"` (use `"%I:%M%p"` for the US)
@@ -584,7 +586,7 @@ switch:
584
586
id(rgb8x32)->set_display_off();
585
587
```
586
588
587
-
Service **skip**
589
+
Service **skip_screen**
588
590
589
591
If there is more than one screen in the queue, skip to the next screen.
590
592
@@ -601,6 +603,24 @@ binary_sensor:
601
603
id(rgb8x32)->skip_screen();
602
604
```
603
605
606
+
Service **hold_screen**
607
+
608
+
displays the current screen for configured ammount (see **hold_time**) (default=20) seconds longer.
609
+
610
+
e.g. on the Ulanzi TC001
611
+
612
+
```
613
+
binary_sensor:
614
+
- platform: gpio
615
+
pin:
616
+
number: $right_button_pin
617
+
inverted: true
618
+
on_press:
619
+
lambda:
620
+
id(rgb8x32)->hold_screen();
621
+
```
622
+
623
+
604
624
Service **status**
605
625
606
626
This service displays the running queue and a list of icons in the logs
0 commit comments