From 1de7857e00102f6711d7accf5c84ae5d7e8e1818 Mon Sep 17 00:00:00 2001 From: peteGSX Date: Sun, 21 Apr 2024 06:48:08 +1000 Subject: [PATCH] Update I2C hints --- I2CManager.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/I2CManager.cpp b/I2CManager.cpp index 2c115fa..3f0aa2f 100644 --- a/I2CManager.cpp +++ b/I2CManager.cpp @@ -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