Project

Dependencies:   Hotboards_keypad TextLCD eeprom

i2ceeprom.h

Committer:
shivanandgowdakr
Date:
2018-10-23
Revision:
0:194ff03a2e6a

File content as of revision 0:194ff03a2e6a:

#ifndef I2CEEPROM_H
#define I2CEEPROM_H
#include "mbed.h"

static void myerror(std::string msg);
void StoreCurrentMode(int32_t idata);
int32_t readCurrentMode();
bool WriteCorresspondingTimes(uint32_t currentMode, float gTime,float yTime,float rTime);
bool ReadCorresspondingTimes(uint32_t currentMode, float *gTime,float *yTime,float *rTime);
void Last_Saved_Mode();

#endif