
Own fork of MbedSmartRestMain
Dependencies: C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed
Fork of MbedSmartRestMain by
measurement/TemperatureMeasurement.h
- Committer:
- vwochnik
- Date:
- 2014-10-23
- Revision:
- 56:4d6e34f1589d
- Parent:
- TemperatureMeasurement.h@ 55:a0f7295ed6b6
- Child:
- 71:063c45e99578
File content as of revision 56:4d6e34f1589d:
#ifndef TEMPERATUREMEASUREMENT_H #define TEMPERATUREMEASUREMENT_H #include "AbstractSmartRest.h" #include "SmartRestTemplate.h" #include "LM75B.h" class TemperatureMeasurement { public: TemperatureMeasurement(AbstractSmartRest&, SmartRestTemplate&, long&, LM75B&); bool init(); bool run(); private: bool _init, _open; long& _deviceId; SmartRestTemplate& _tpl; AbstractSmartRest& _client; LM75B& _sensor; }; #endif