Open balu- opened 1 year ago
Wouldn't this as well solve the problem with RX pullup on the newer D1 mini clones? https://electronics.stackexchange.com/questions/644753/how-to-bypass-strong-pullup-on-rx-pin-of-wemos-d1-mini-esp8266-to-communicate
@balu- you can assign any of 3 port available on ESP32, check my fork here: https://github.com/dzungpv/mitsubishi2MQTT/commit/55b17905fc24eb43c9da6d5a72cd93e20210eadd
Would it be possible to enable a selection of the serial interface/pins which is used?
Background: I'm using an esp32 which has 3 Serial interfaces, i soldered the pins so that uart2 (Pin 16 and 17) is connected to the heatpump. Therefor it would be great if possible to select that this pins are used.
As a workaround I forked modified the
hp.connect(&Serial)
call tohp.connect(&Serial,PIN_RX,PIN_TX);
in mitsubishi2mqtt.ino but thats not very sustainable.