Naman Chauhan
Published © GPL3+

Reading and Writing Data to External EEPROM Using Arduino

Write and read data like text and images, which cannot be stored on Arduino due to its large size.

IntermediateProtip30 minutes5,894
Reading and Writing Data to External EEPROM Using Arduino

Things used in this project

Hardware components

EEPROM - 24LC512
×1
ATmega328P-PU
×1
16 MHz Crystal
×1
Breadboard
×1
Resistor 4.7k ohm
×2
Capacitor 22 pF
×2

Story

Read more

Schematics

Arduino Schematics - Fritzing

Schematic_Using-external-EEPROM-with-Arduino_Sheet-1_20190620133247

Code

external_eeprom_I2C.ino

C/C++
#include <Wire.h> 

#define eeprom 0x50 //defines the base address of the EEPROM

void setup()  {
  Wire.begin(); //creates a Wire object
  Serial.begin(9600); 

  unsigned int address = 0; //first address of the EEPROM
  Serial.println("We write the zip code 22222, a zip code");
  for(address = 0; address< 5; address++) 
    writeEEPROM(eeprom, address, '2'); // Writes 22222 to the EEPROM

  for(address = 0; address< 5; address++) {
    Serial.print(readEEPROM(eeprom, address), HEX); 
    }
  }

void loop() {
  /*there's nothing in the loop() function because we don't want the arduino to 
  repeatedly write the same thing to the EEPROM over and over. 
  We just want a one-time write, so the loop() function is avoided with EEPROMs.*/
}

//defines the writeEEPROM function
void writeEEPROM(int deviceaddress, unsigned int eeaddress, byte data ) {
  Wire.beginTransmission(deviceaddress);
  Wire.write((int)(eeaddress >> 8));      //writes the MSB
  Wire.write((int)(eeaddress & 0xFF));    //writes the LSB
  Wire.write(data);
  Wire.endTransmission();
  }

//defines the readEEPROM function
byte readEEPROM(int deviceaddress, unsigned int eeaddress ) {
  byte rdata = 0xFF;
  Wire.beginTransmission(deviceaddress);
  Wire.write((int)(eeaddress >> 8));      //writes the MSB
  Wire.write((int)(eeaddress & 0xFF));    //writes the LSB
  Wire.endTransmission();
  Wire.requestFrom(deviceaddress,1);
  if (Wire.available()) 
    rdata = Wire.read();
  return rdata;
  }

external_eeprom_I2C

Credits

Naman Chauhan

Naman Chauhan

41 projects • 127 followers
Programmer, electronic adept masquerading as Computer Science student. Email for Cooperation/Sponsorships to chauhannaman98@gmail.com

Comments