mirror of https://github.com/arendst/Tasmota.git
Inter-message gap
parent
fc3c4853fb
commit
d214f7fe6e
|
@ -11,14 +11,16 @@ There are two command syntax forms for sending a remote control code in RAW form
|
||||||
| Parameter | Description |
|
| Parameter | Description |
|
||||||
|---|---|
|
|---|---|
|
||||||
| `<frequency>` | carrier frequency (default 0 = 38kHz)
|
| `<frequency>` | carrier frequency (default 0 = 38kHz)
|
||||||
| `<header_mark>` | header mark duration (µs) (optional for some protocols)
|
| `<header_mark>`** | header mark duration (µs) (optional for some protocols)
|
||||||
| `<header_space>` | header space duration (µs) (optional for some protocols)
|
| `<header_space>`** | header space duration (µs) (optional for some protocols)
|
||||||
| `<bit_mark>` | bit mark duration (µs) (optional for some protocols)
|
| `<bit_mark>` | bit mark duration (µs) (optional for some protocols)
|
||||||
| `<zero_space>` | zero space duration (µs)
|
| `<zero_space>` | zero space duration (µs)
|
||||||
| `<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_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 (µs). 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_
|
| `<one_space>` | one space duration (µs). 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)
|
| `<bit_stream>` | bit stream data (stream of ones and zeroes)
|
||||||
|
|
||||||
|
** If `header_mark` and `header_space` are specified, the gap will be computed as `(header_mark + header_space) * 3` with a high limit of 65µs to avoid 16 bits overflow. If `header_mark` and `header_space` are not specified, the gap will be 40µs.
|
||||||
|
|
||||||
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)
|
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)
|
||||||
|
|
||||||
## Examples for bitstream command syntax
|
## Examples for bitstream command syntax
|
||||||
|
|
Loading…
Reference in New Issue