Commit 9dcfea643c11ffc63ab5dcff6c7b57e58234cd4f
1 parent
7895af19
Change OpenTherm RX and TX pins to new OpenTherm shield
Showing
6 changed files
with
17 additions
and
12 deletions
examples/Advanced_Thermostat/Advanced_Thermostat.ino
examples/Basic_Thermostat_Commands/Basic_Thermostat_Commands.ino
examples/MQTT_Advanced_Thermostat/MQTT_Advanced_Thermostat.ino
| ... | ... | @@ -103,9 +103,9 @@ |
| 103 | 103 | |
| 104 | 104 | |
| 105 | 105 | // GPIO pin used to read data from the boiler or HVAC. Must support interrupts |
| 106 | -#define OT_RX_PIN (34) | |
| 106 | +#define OT_RX_PIN (35) | |
| 107 | 107 | // GPIO pin used to send data to the boiier or HVAC. Must not be a 'read only' GPIO |
| 108 | -#define OT_TX_PIN (17) | |
| 108 | +#define OT_TX_PIN (33) | |
| 109 | 109 | |
| 110 | 110 | // The address of the BME280 temperature sensor |
| 111 | 111 | #define BME_ADDRESS (0x76) | ... | ... |
examples/OpenTherm_Show_DATA-IDs/OpenTherm_Show_DATA-IDs.ino
| 1 | 1 | #include <EasyOpenTherm.h> |
| 2 | 2 | |
| 3 | +// ESP32-S2 | |
| 3 | 4 | // GPIO pin used to read data from the boiler or HVAC. Must support interrupts |
| 4 | -#define OT_RX_PIN (34) | |
| 5 | +#define OT_RX_PIN (35) | |
| 5 | 6 | // GPIO pin used to send data to the boiier or HVAC. Must not be a 'read only' GPIO |
| 6 | -#define OT_TX_PIN (17) | |
| 7 | +#define OT_TX_PIN (33) | |
| 7 | 8 | |
| 8 | 9 | |
| 9 | 10 | ... | ... |
examples/Test_Boiler_Communication/Test_Boiler_Communication.ino
examples/Test_HVAC_Communication/Test_HVAC_Communication.ino