Read Ascii value from external AT24c32 chip at 0x000

not getting data from external ic AT24c32....
anyone can help?

Post code.
Post schematic.

already tried many of codes but not working and not have a much idea on this topic u can help ..... i want to read ascii value stored on 0x000 , on to display

Please see reply #1

i have no code now...sry u plz help

not getting data from external ic AT24c32..

Presumably, you have code that is not working.
Post that; maybe we can help you fix it.

#include <Wire.h>

#include <Eeprom24C32_64.h>
#define EEPROM_ADDRESS 0x000
static Eeprom24C32_64 eeprom(EEPROM_ADDRESS);
void setup()
{
Serial.begin(9600);
eeprom.initialize();

const word address = 0x000;
const byte count = 94;

byte inputBytes[count] = { 0 };
byte outputBytes[count] = { 0 };

Serial.println("Read bytes from EEPROM memory...");
eeprom.readBytes(address, count, outputBytes);

Serial.println("Read bytes:");
for (byte i = 0; i < count; i++)
{
Serial.write(outputBytes*);*

  • Serial.print(" ");*
  • }*
  • Serial.println("");*
    }
    void loop()
    {
    }

Also on SE: