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: mbed mbed-rtos MLX90614
Thermometer.h
- Committer:
- ovidiup13
- Date:
- 2015-06-03
- Revision:
- 8:81ed1135ba02
File content as of revision 8:81ed1135ba02:
#include "Item.h" class Thermometer: public Item { public: Thermometer(ST7565 *lcd, Item *back, DigitalOut *gyro, DigitalOut *thermo); //inherited functions virtual void display(void); virtual void update(char c); private: Thread *tt; DigitalOut *gyro, *thermo; char * title; static void tt_start(const void *args); void display_temperature(); };