User Tools

Site Tools


ds1307_how_to_access_ram

This is an old revision of the document!


How to Access Ram

Each I2C device has an address. The DS1307 chip address is 0x68.

The Ram on the device starts at address 0x08. The first 7 locations are the RTC.

To get to the start of RAM, use the following code:

   Wire.beginTransmission(DS1307_ADDRESS);   
   Wire.send(8);	
   Wire.endTransmission();
ds1307_how_to_access_ram.1315878020.txt.gz · Last modified: 2011/09/12 21:40 by tomgee