Add I2C: label to location string for I2C devices

This commit is contained in:
Adam Honse committed 2020-10-20 23:42:20 -05:00
1 parent 5672f556e9
commit 9fcc8dd573
17 files changed
+22 -19

No files matched your search

@@ -27,7 +27,7 @@ std::string RGBFusionGPUController::GetDeviceLocation()
snprintf(addr, 5, "0x%02X", dev);
return_string.append(", address ");
return_string.append(addr);
return(return_string);
return("I2C: " + return_string);
}
void RGBFusionGPUController::SetColor(unsigned char red, unsigned char green, unsigned char blue)