

Hi all,
I have a S08Pro that I got on aliexpress for like $3. I have cracked it open and was able to use cloud cutter to install the esphome kickstarter on it. I got the temp and humidity sensors working, but I need some assistance with the IR transmitter and receiver. I'm not sure which pins to use, could someone take a look and let me know? Hopefully we can get this added as a cc profile for future users as well.
My current ESPHome yaml below.
# do not include api keys in config! stripped to GPIO
sensor:
- platform: uptime
name: Uptime
- platform: tuya
sensor_datapoint: 101
name: Temperature
unit_of_measurement: ""
accuracy_decimals: 1
filters:
- lambda: return (x * 0.1) * (9.0/5.0) + 32.0;
- platform: tuya
sensor_datapoint: 102
name: Humidity
unit_of_measurement: "%"
remote_transmitter:
pin: 26 # from IRSend line
carrier_duty_percent: 50%
remote_receiver:
pin:
number: 11 # from IRRecv line
inverted: true
dump: all
status_led:
pin: 9 # from LED 0 line
# Button config will not do anything
# and you have to write more code
output:
- platform: gpio
pin: 6 # from Btn line
id: btn_output
button:
- platform: output
name: "Generic Output"
output: btn_output
duration: 500ms
- platform: restart
name: Restart
uart:
rx_pin: RX1
tx_pin: TX1
baud_rate: 9600