To measure temperature from DHT11 temp and RH sensor.
Dependencies: DHT GPS MTS-Serial libmDot mbed-rtos mbed
Fork of mDot_LoRa_Connect_Example by
Diff: debug.h
- Revision:
- 5:bd93324bc2a9
diff -r 36e214ebfa56 -r bd93324bc2a9 debug.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debug.h Fri Jun 10 00:13:36 2016 +0000 @@ -0,0 +1,8 @@ +#include "mbed.h" +#include <stdio.h> + +#if 1 + #define DEBUG_PRINTF(fmt, args...) printf("%s:%d: "fmt, __FUNCTION__, __LINE__, ## args) +#else + #define DEBUG_PRINTF(fmt, args...) +#endif