mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-07-28 04:07:47 +00:00
Changed password timeout to 5 minutes Added direct GPIO output control without password request
11 lines
232 B
Arduino
11 lines
232 B
Arduino
void hardwareInit()
|
|
{
|
|
// configure hardware pins according to eeprom settings.
|
|
if (Settings.Pin_i2c_sda != -1)
|
|
{
|
|
Serial.println(F("INIT : I2C"));
|
|
Wire.begin(Settings.Pin_i2c_sda, Settings.Pin_i2c_scl);
|
|
}
|
|
}
|
|
|