Fix I2C address of MCP4728 on LPC176x (#16578)

2.0.x
dagorel 5 years ago committed by Scott Lahteine
parent f10d3564e1
commit bda4957f9b

@ -43,7 +43,7 @@ xyze_uint_t mcp4728_values;
*/
void mcp4728_init() {
Wire.begin();
Wire.requestFrom(int(DAC_DEV_ADDRESS), 24);
Wire.requestFrom(I2C_ADDRESS(DAC_DEV_ADDRESS), 24);
while (Wire.available()) {
char deviceID = Wire.read(),
hiByte = Wire.read(),

Loading…
Cancel
Save