From 253f124fbbcd30e74354083603fb0a418dfac104 Mon Sep 17 00:00:00 2001 From: Artur 'Wodor' Wielogorski Date: Sun, 8 Nov 2020 21:10:48 +0000 Subject: [PATCH] Add a note about INPUT_PULLUP (#830) * Add a note about INPUT_PULLUP * Fix lint --- components/remote_receiver.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/components/remote_receiver.rst b/components/remote_receiver.rst index ef8744124..fb77427ce 100644 --- a/components/remote_receiver.rst +++ b/components/remote_receiver.rst @@ -211,6 +211,20 @@ Remote code selection (exactly one of these has to be included): remote_transmitter: pin: 5 carrier_duty_percent: 100% + +.. note:: + + To caputure the codes more effectively with directly connected receiver like tsop38238 you can try to use `INPUT_PULLUP`: + + .. code-block:: yaml + + remote_receiver: + pin: + number: D4 + inverted: True + mode: INPUT_PULLUP + dump: all + See Also --------