From f66ef4502947223a62a48423d15a5840a66f3297 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Tue, 12 Feb 2019 12:01:20 +1300 Subject: [PATCH] Add docs for JVC remote transmitting and receiving (#160) * Add docs for JVC remote transmitting and receiving * Moving JVC down in docs --- components/remote_receiver.rst | 1 + components/switch/remote_transmitter.rst | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/components/remote_receiver.rst b/components/remote_receiver.rst index 338b6f959..2380fa863 100644 --- a/components/remote_receiver.rst +++ b/components/remote_receiver.rst @@ -32,6 +32,7 @@ Configuration variables: - **lg**: Decode and dump LG infrared codes. - **nec**: Decode and dump NEC infrared codes. - **panasonic**: Decode and dump Panasonic infrared codes. + - **jvc**: Decode and dump JVC infrared codes. - **samsung**: Decode and dump Samsung infrared codes. - **sony**: Decode and dump Sony infrared codes. - **rc_switch**: Decode and dump RCSwitch RF codes. diff --git a/components/switch/remote_transmitter.rst b/components/switch/remote_transmitter.rst index 66d15aeaf..34d12e6db 100644 --- a/components/switch/remote_transmitter.rst +++ b/components/switch/remote_transmitter.rst @@ -91,6 +91,8 @@ Supported remote codes: panasonic: address: 0x4004 command: 0x1000BCD + jvc: + data: 0x1234 rc_switch_raw: code: '001010011001111101011011' protocol: 1 @@ -143,6 +145,10 @@ Configuration variables: - **address**: The address of the device. - **command**: The command to send. +- **jvc**: Send a JVC IR code. + + - **data**: The data bytes to send. + - **rc_switch_raw**: Send an RCSwitch raw code. - **code** (**Required**, string): The code to send. Must be a string of 0s and 1s.