1
0
mirror of https://github.com/esphome/esphome.git synced 2025-02-23 21:38:16 +00:00
Stefan Agner a02d2e2e11
Explicitly use overloaded begin() for I2C master initialization (#2978)
Arduino 2.0.1 and newer support slave and master mode. The two modes
have a begin() method with different signature:

```
// Slave Begin
bool TwoWire::begin(uint8_t addr, int sdaPin, int sclPin, uint32_t frequency)

// Master Begin
bool TwoWire::begin(int sdaPin, int sclPin, uint32_t frequency)
```

Use type casting to make sure that overloaded method for master mode
is used.
2022-01-03 16:37:21 +01:00
..
2021-12-13 09:12:50 +13:00
2021-10-07 21:18:00 +02:00
2021-11-10 19:40:18 +01:00