Version 5
Dependencies: BMP280 TextLCD BME280
main.cpp
- Committer:
- O_Thom
- Date:
- 2018-11-29
- Revision:
- 5:f87129ac8bf3
- Parent:
- 4:740cba3f2716
- Child:
- 6:b7f6e0c0f646
File content as of revision 5:f87129ac8bf3:
#include "mbed.h" #include "sample_hardware.hpp" #include "Sampler.hpp" #include "LCD.hpp" #include "message.hpp" sample_message message; Thread tLCD; Thread tSAMP; int main() { tLCD.start(LCD_Thread); tSAMP.start(SAMP_Thread); Thread::wait(osWaitForever); }