Address bits are connected to ground. for Arduino I could use address $20 or 0 to access, the latter if I used one of the libraries.
Address bits are connected to ground. for Arduino I could use address $20 or 0 to access, the latter if I used one of the libraries.
in Australia I drive on the other side of the road, its horses for coursesfor Arduino I could use address $20 or 0 to access, the latter if I used one of the libraries.
pbp uses 8bit address scheme
so A0=0 A1=0 A2=0Address bits are connected to ground
plugged into formula
pbp i2c address = (% 0 1 0 0 A2 A1 A0 )<<1
addr =(%0100000)<<1 = $40
so
I2CWRITE SDA,SCL,$40,[$05,%10111000] is whats required
Warning I'm not a teacher
Thanks Richard. MELabs also told me it was $40 for address. That was the problem! That and the fact my outputs are active low and I was sending active high bits.
Bookmarks