fix and update docs

This commit is contained in:
openshwprojects
2023-03-30 11:05:57 +02:00
parent 8a951bdf44
commit 3e994d8378
9 changed files with 191 additions and 129 deletions

View File

@ -7,6 +7,8 @@
- channel 1 - output relay<br>
```again:
again:
echo "Step 1"
setChannel 1 0
echo "Step 2"
@ -124,3 +126,24 @@ looper:
```
<b>Sending UART from script - WXDM2 dimmer support</b>
<br>
<br>Requirements:
- a WXDM2 dimmer with custom UART protocol<br>
```
// WXDM2 dimmer demo
// WXDM2 is using custom UART protocol with no checksum
again:
addChannel 10 1 0 255 1
delay_ms 100
uartSendHex 0A FF 55 02 00 $CH10$ 00 00 0A
goto again
```