This program is an advanced "IoT" thermometer using LM75B component library. It displays the current value to the Serial host in Celcius or Fahrenheit (possible to change using a switch). It also stores an historic and displays it to the user using the LCD screen. Moreover, you can change the orientation of the screen by turning the device, just like a smartphone.

Dependencies:   C12832 FXOS8700CQ LM75B mbed

Committer:
co838_gtvl2
Date:
Wed Feb 10 01:41:39 2016 +0000
Revision:
3:a4dac093a968
Parent:
2:5d0c209e5c61
Child:
4:5bf99eb2d740
Working Version 1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
co838_gtvl2 1:06713d1b69cf 1 #ifndef _MAIN_H_
co838_gtvl2 1:06713d1b69cf 2 # define _MAIN_H_
co838_gtvl2 1:06713d1b69cf 3
co838_gtvl2 1:06713d1b69cf 4 # include "mbed.h"
co838_gtvl2 1:06713d1b69cf 5 # include "LM75B.h"
co838_gtvl2 1:06713d1b69cf 6 # include "C12832.h"
co838_gtvl2 1:06713d1b69cf 7
co838_gtvl2 3:a4dac093a968 8 # define MIN_REFRESH_TIME 10
co838_gtvl2 1:06713d1b69cf 9 # define MAX_REFRESH_TIME 5000
co838_gtvl2 1:06713d1b69cf 10
co838_gtvl2 2:5d0c209e5c61 11 #undef _DEBUG
co838_gtvl2 2:5d0c209e5c61 12 // # define _DEBUG
co838_gtvl2 2:5d0c209e5c61 13
co838_gtvl2 1:06713d1b69cf 14 #endif /* _MAIN_H_ */