Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: PololuLedStrip mbed
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
Generated on Tue Jul 19 2022 02:43:48 by
1.7.2