Improve co-existence of usermods sharing I2C

Improve co-existence of several popular usermods with respect to shared I2C bus.
- ensure that i2c_sda and i2c_scl are used when defined
- ensure that HW_PIN_SDA / HW_PIN_SCL are not overwritten
- ensure that Wire.begin()nis always called with user-defined pins (remove rogue Wire.begin() without parameters)
- ensure that set.cpp / cfg.cpp use esp32-specific global Wire objects.
This commit is contained in:
Frank
2022-12-17 19:45:45 +01:00
parent 6385bf41aa
commit dae6de76f1
7 changed files with 63 additions and 10 deletions

View File

@@ -14,7 +14,7 @@ class DS1307RTC
// user-accessible "public" interface
public:
DS1307RTC() {}
static void begin() { Wire.begin(); }
static void begin() { /*Wire.begin();*/ }
static time_t get();
static bool set(time_t t);
static bool read(tmElements_t &tm);