Closed GoogleCodeExporter closed 8 years ago
Basically you have to create a file
e.g. dbFile = SD.open("example.db", FILE_WRITE);
and then you can use the seek methods of the file library in the reader/writer
classes
void writer(unsigned long address, byte data)
{
dbFile.seek(address);
dbFile.write(data);
dbFile.flush();
}
byte reader(unsigned long address)
{
dbFile.seek(address);
return dbFile.read();
}
Fulle example see
http://blog.brauingenieur.de/2014/01/20/extended-database-library-using-an-sd-ca
rd
Original comment by martin.n...@gmail.com
on 29 Jan 2014 at 8:23
Original issue reported on code.google.com by
bruce.ve...@gmail.com
on 30 Dec 2013 at 9:39