我正在使用 mcp3421 adc,它只能在默认模式 12 位下工作。
我在很多板子里用c语言写的这个ic。
这在我的测试程序中
i2c.setup(4,5)
let address =104
let numchars= 3
i2c.begin(address)
i2c.write(208)
i2c.write(28)
i2c.end()
i2c.begin(address)
i2c.write(209)
i2c.end()
i2c.requestfrom(address,numchars)
cifra1=i2c.read()
cifra2=i2c.read()
cifra3=i2c.read()
i2c.end()
打印 cifra1 打印
cifra2
打印cifra3
结束
i2c.write(28) 行似乎不起作用....
有人可以帮我吗???