David Knight / Mbed 2 deprecated lichtspiel

Dependencies:   PololuLedStrip mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers EEPROM.h Source File

EEPROM.h

00001 #ifndef EEPROM_H
00002 #define EEPROM_H
00003 
00004 #include "mbed.h"
00005 #include "board.h"
00006 
00007 class EEPROM
00008 {
00009 public:
00010     static uint8_t read(uint32_t addr);
00011     static void update(uint32_t addr, uint8_t value);
00012     
00013 private:
00014     static uint8_t eeprom_data[EEPROM_SIZE];
00015 
00016 };
00017 
00018 
00019 #endif