I've been trying to learn about I2C today, it's taken me some time to set up but I've now got a Raspberry Pi configured with i2c-tools
installed and I can see /dev/i2c-0
.
However when I run i2cdetect -y 0
I get an empty address table. This makes sense as I don't have any device connected to the I2C bus. What I would like to do is be able to write to the I2C pins and observe the output using my oscilloscope or even connect an LED so I can see state changes.
Is this even possible, and if so how would I go about it? Thanks in advance.