mirror of https://github.com/arendst/Tasmota.git
Updated IRSend RAW Encoding (markdown)
parent
80d95393d4
commit
23755b4b02
|
@ -7,14 +7,17 @@ There are two command syntax forms for sending a remote control code in RAW form
|
|||
2. `IRSend raw,<frequency>[,<header_mark>,<header_space>,<bit_mark>],<zero_space>[, [<one_multiple>] | <one_space>],<bit_stream>`
|
||||
|
||||
Where
|
||||
* `<frequency>` = carrier frequency (default 0 = 38kHz)
|
||||
* `<header_mark>` = header mark duration (ms) (optional for some protocols)
|
||||
* `<header_space>` = header space duration (ms) (optional for some protocols)
|
||||
* `<bit_mark>` = bit mark duration (ms) (optional for some protocols)
|
||||
* `<zero_space>` = zero space duration (ms)
|
||||
* `<one_multiple>` = May be used instead of the `<one_space>` parameter if the one space duration is an integral multiple of the zero space duration. May be omitted if the multiple is 2.
|
||||
* `<one_space>` = one space duration (ms) (use this parameter if the one space duration is not an integral multiple of `<zero_space>`)
|
||||
* `<bit_stream>` = bit stream data (stream of ones and zeroes)
|
||||
|
||||
| Parameter | Description |
|
||||
|---|---|
|
||||
| `<frequency>` | carrier frequency (default 0 = 38kHz)
|
||||
| `<header_mark>` | header mark duration (ms) (optional for some protocols)
|
||||
| `<header_space>` | header space duration (ms) (optional for some protocols)
|
||||
| `<bit_mark>` | bit mark duration (ms) (optional for some protocols)
|
||||
| `<zero_space>` | zero space duration (ms)
|
||||
| `<one_multiple>` | used to specify the one space duration if the one space duration is an integral multiple of the zero space duration. This parameter may be omitted if the multiple is 2.<BR><BR>_Use of this parameter is mutually exclusive with the `<one_space>` parameter_
|
||||
| `<one_space>` | one space duration (ms). Use this parameter if the one space duration is not an integral multiple of `<zero_space>`<BR><BR>_Use of this parameter is mutually exclusive with the `<one_multiple>` parameter_
|
||||
| `<bit_stream>` | bit stream data (stream of ones and zeroes)
|
||||
|
||||
This command syntax version makes use of the output of the raw IR decoder from [ToniA/Raw-IR-decoder-for-Arduino](https://github.com/ToniA/Raw-IR-decoder-for-Arduino)
|
||||
|
||||
|
|
Loading…
Reference in New Issue