diff --git a/ioBroker-Config-Screensaver.md b/ioBroker-Config-Screensaver.md index 22d5d69..a9d0701 100644 --- a/ioBroker-Config-Screensaver.md +++ b/ioBroker-Config-Screensaver.md @@ -624,7 +624,165 @@ const swWindy: RGB = { red: 150, green: 150, blue: 150}; * null = automatischer Dimmode aktiv * 0-100 = manuelle Dimmstufe (automatischer Dimmode inaktiv) + ## bestimme Seite nach den Aufwecken unter 0_userdata.0.NSPanel.ScreensaverInfo.bExitPage könnt ihr eine Seite festlegen die nach dem tippen auf das Panel geöffnet werden soll. -Der Wert 'null' öffnet wieder die letzte offene Seite. Wenn ihr eine Bestimmte Seite öffnen wollt, müsst ihr den Index der Seite eingeben ( Beginn bei 0). Diesen bekommt ihr aus der Pageauflistung in der Config raus. +Der Wert 'null' öffnet wieder die letzte offene Seite. Wenn ihr eine Bestimmte Seite öffnen wollt, müsst ihr den Index der Seite eingeben ( Beginn bei 0). Diesen bekommt ihr aus der Pageauflistung in der Config raus. + + +## Individuelles Datumsformat im Screensaver: +![image](https://github.com/joBr99/nspanel-lovelace-ui/assets/102996011/019ef0b0-fde9-45ff-b623-f8bbf757d0a8) + +Das Script legt automatisch einen Datenpunkt unter 0_userdata.0. an: +![image](https://github.com/joBr99/nspanel-lovelace-ui/assets/102996011/38dca613-f651-48f6-b0ca-0570e423d267) + +Dieser Datenpunkt ist unter: `0_userdata.0..Config.Dateformat.customFormat` zu finden und ist per Default **nicht** gefüllt + +Es kann ein abweichendes Format (wie im Beispiel: `dddd - MM/DD/YYYY`) für das Datum im Screensaver definiert werden. + +Mögliche Formatierungsoptionen (Link: [siehe auch dayjs](https://day.js.org/docs/en/display/format)): + + +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + +
FormatOutputDescription
YY18Two-digit year
YYYY2018Four-digit year
M1-12The month, beginning at 1
MM01-12The month, 2-digits
MMMJan-DecThe abbreviated month name
MMMMJanuary-DecemberThe full month name
D1-31The day of the month
DD01-31The day of the month, 2-digits
d0-6The day of the week, with Sunday as 0
ddSu-SaThe min name of the day of the week
dddSun-SatThe short name of the day of the week
ddddSunday-SaturdayThe name of the day of the week
H0-23The hour
HH00-23The hour, 2-digits
h1-12The hour, 12-hour clock
hh01-12The hour, 12-hour clock, 2-digits
m0-59The minute
mm00-59The minute, 2-digits
s0-59The second
ss00-59The second, 2-digits
SSS000-999The millisecond, 3-digits
Z+05:00The offset from UTC, ±HH:mm
ZZ+0500The offset from UTC, ±HHmm
AAM PM
aam pm
......Other formats @>>AdvancedFormat
+ +