PDA

View Full Version : I2C compatibles PICs



xnihilo
- 5th May 2008, 23:39
Do I need some special I2C enabled/ready PIC to use an I2C EEPROM or can I use any PIC?

BrianT
- 6th May 2008, 00:08
RTFM,

Any PIC will work.

PBC uses I2CIN and I2COUT

PBP uses I2CREAD and I2CWRITE

These are 'bit banging' routines that work with any port on any PIC. These routines do not rely on any I2C support inside the PIC.

HTH
BrianT

xnihilo
- 6th May 2008, 00:16
RTFM,

Any PIC will work.

PBC uses I2CIN and I2COUT

PBP uses I2CREAD and I2CWRITE

These are 'bit banging' routines that work with any port on any PIC. These routines do not rely on any I2C support inside the PIC.

HTH
BrianT


Thank you for your answer. It is the confirmation of what I thought I had understood.