1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-12-23 12:51:24 +01:00

Update I2C hints

This commit is contained in:
peteGSX 2024-04-21 06:48:08 +10:00
parent ebe8f62cf0
commit 1de7857e00

View File

@ -61,9 +61,13 @@ static const FSH * guessI2CDeviceType(uint8_t address) {
else if (address >= 0x40 && address <= 0x4f)
return F("PWM");
else if (address >= 0x50 && address <= 0x5f)
return F("EEPROM");
return F("EEPROM");
else if (address == 0x60)
return F("EX-Turntable");
else if (address == 0x65)
return F("EX-IOExpander");
else if (address == 0x68)
return F("Real-time clock");
return F("Real-time clock or Rotary Encoder");
else if (address >= 0x70 && address <= 0x77)
return F("I2C Mux");
else