So I have some 24C08 EEPROM's sitting around, and wanted to try and integrate them in for some counter storage.
The datasheet can be found here:
http://www.datasheetarchive.com/24C08-datasheet.htmlI was looking at the playground, at the source for the 24C256, and found a lot of differences (obviously).
Here are the chip differences...
Code/Function
NC = Not connected
A0–A2 = Address Inputs
SDA = Serial Data I/O
SCL = Serial Clock Input
WP = Write Protect
PRE = Write Protect Enable
E = Chip Enable Input
MODE = Multibyte/Page Write Mode (C version)
WC = Write Control (W version)
VCC = Supply Voltage
VSS = Ground
The pin layouts on the 24c256 are:
(1) A0
(2) A1
(3) A2
(4) VSS
(5) SDA
(6) SCL
(7) WP
(

VCC
the pin layouts on my 24c08's are:
(1) PRE
(2) NC
(3) E
(4) VSS
(5) SDA
(6) SCL
(7) MODE
(

VCC
I think once I get the wiring setup, I can take the rest on my self - will probably take the code here: (
http://www.arduino.cc/playground/Code/I2CEEPROM24C1024) and modify it to work.
Can someone help me out with the wiring? And perhaps an insite of what I will need to do with the code addressing?
Update:
So it seems the base wiring is going to be the same... SDA/SCL/VSS/VCC - however, not sure about the rest.