Compare commits

..

2 Commits

Author SHA1 Message Date
9830489843 Merge remote-tracking branch 'origin/HEAD' 2024-05-29 11:34:56 +02:00
610abb3cfd ir rx add Pin.PULL_UP 2024-05-29 11:32:19 +02:00

View File

@ -54,7 +54,7 @@ elif platform == "esp8266":
elif platform == "esp32" or platform == "esp32_LoBo":
ir_rx_pin = Pin(23, Pin.IN)
elif platform == "rp2":
ir_rx_pin = Pin(16, Pin.IN)
ir_rx_pin = Pin(16, Pin.IN, Pin.PULL_UP)
#### OLT IR TX imports ###
from sys import platform