Fix I2C address of MCP4728 on LPC176x (#16578)
This commit is contained in:
parent
f10d3564e1
commit
bda4957f9b
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ xyze_uint_t mcp4728_values;
|
||||||
*/
|
*/
|
||||||
void mcp4728_init() {
|
void mcp4728_init() {
|
||||||
Wire.begin();
|
Wire.begin();
|
||||||
Wire.requestFrom(int(DAC_DEV_ADDRESS), 24);
|
Wire.requestFrom(I2C_ADDRESS(DAC_DEV_ADDRESS), 24);
|
||||||
while (Wire.available()) {
|
while (Wire.available()) {
|
||||||
char deviceID = Wire.read(),
|
char deviceID = Wire.read(),
|
||||||
hiByte = Wire.read(),
|
hiByte = Wire.read(),
|
||||||
|
|
Reference in a new issue