Hi everyone, I hope that’s the right place to ask for help.
I have a few of those to control my minisplits (Ductless HVAC Wi-Fi Module - CloudFree), they are working really well except a couple features are via IR only.
I ordered an IR transmitter (https://www.aliexpress.us/item/3256806224860317.html) that I soldered to the esp12 board so I can control those IR only features.
ESP – IR transmitter
---------
GPIO05 – DAT
5V – VCC
GND – GND
In my esphome config, I have something like that:
remote_transmitter:
pin: GPIO05
carrier_duty_percent: 50% # 50% for IR LED, 100% for direct connect to TSOP IR receiver output.
# UART settings for Midea dongle (required)
uart:
tx_pin: 1 # hardware dependant
rx_pin: 3 # hardware dependant
baud_rate: 9600
button:
- platform: template
name: Display Toggle
icon: mdi:theme-light-dark
on_press:
midea_ac.display_toggle:
I plugged in the USB before updateing the firmware, everything was working (except the IR feature of course). After updating the firmware via OTA, the board became totally unresponsive (can’t connect over wifi, over via USB on my mac but that might be a different issue).
My questions to you all are:
- am I doing anything wrong or missing something obvious? should this work on paper at least?
- do I need any pull up or pull down resistors to connect my IR transmitter to my esp12?
I am trying to figure out if my issue is with the esphome config or with the hardware/soldering.
Thank you all for helping!