node-red-contrib-knx-ultimate
Version:
Control your KNX and KNX Secure intallation via Node-Red! A bunch of KNX nodes, with integrated Philips HUE control, ETS group address importer, KNX AI for diagnosticsand KNX routing between interfaces. Easy to use and highly configurable.
37 lines (25 loc) • 919 B
HTML
<script type="text/markdown" data-help-name="knxUltimateDateTime">
# KNX DATUM/UHRZEIT
Mit diesem Node kannst du **Datum/Uhrzeit auf den KNX-Bus schreiben**.
Der Node kann senden:
- **DPT 19.001** auf eine *Datum/Uhrzeit-GA* (empfohlen)
- **DPT 11.001** auf eine *Datum-GA* (optional)
- **DPT 10.001** auf eine *Uhrzeit-GA* (optional)
## Sendezeitpunkte
- Beim Deploy/Start (optional, mit Verzögerung)
- Periodisch (optional)
- Bei jeder Eingangs-Nachricht
- Über den Editor-Button (Sofort senden)
## Eingabe-Payload
Wenn `msg.payload` leer ist, wird die aktuelle Systemzeit gesendet.
Unterstützt:
- `new Date()`
- Timestamp (ms)
- String, der von `new Date("...")` geparst werden kann
- `"now"`
## Output
Der Node gibt pro Versand eine Nachricht aus:
- `msg.payload`: die gesendete `Date`
- `msg.sent`: Array von `{ ga, dpt, name }`
- `msg.reason`: `input`, `startup`, `periodic` oder `button`
</script>