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: C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed
Fork of MbedSmartRestMain by
measurement/TemperatureMeasurement.h
- Committer:
- xinlei
- Date:
- 2015-04-13
- Revision:
- 93:0acd11870c6a
- Parent:
- 91:423177e8a401
- Child:
- 94:61d44636f020
File content as of revision 93:0acd11870c6a:
#ifndef TEMPERATUREMEASUREMENT_H #define TEMPERATUREMEASUREMENT_H #include "AbstractSmartRest.h" #include "SmartRestTemplate.h" #include "LM75B.h" #include "DeviceInfo.h" #include "LCDDisplay.h" class TemperatureMeasurement { public: TemperatureMeasurement(AbstractSmartRest&, SmartRestTemplate&, long&, DeviceInfo&, LCDDisplay&); bool init(); bool run(); private: bool _init, _open; long& _deviceId; SmartRestTemplate& _tpl; AbstractSmartRest& _client; LM75B _sensor; float oldValue; Timer sendingTimer; DeviceInfo& _deviceInfo; LCDDisplay& _lcdDisplay; }; #endif