Hello
Im trying to see the I2C frame of the mbed but i've got some trouble.
#include "mbed.h"
I2C i2c(p28, p27); // sda, scl
const int addr = 0x72;
int main()
{
char data[] = {0x00, 0x17, 0x3F, 0x06, 0x5B, 0x4F};
while(1)
i2c.write(addr, data, 6);
}
When I plug a scopemeter ont the pins I would see the frame?
But even on the SCL I had nothing.
Somebody knows why?
Hello
Im trying to see the I2C frame of the mbed but i've got some trouble.
But even on the SCL I had nothing.
Somebody knows why?