Version 5
Dependencies: BMP280 TextLCD BME280
main.cpp
- Committer:
- O_Thom
- Date:
- 2018-11-27
- Revision:
- 4:740cba3f2716
- Parent:
- 2:38d31b2e0956
- Child:
- 5:f87129ac8bf3
File content as of revision 4:740cba3f2716:
/* Sampling Code */ #include "mbed.h" #include "sample_hardware.hpp" #include "Sampler.hpp" Sampler s; // Initialise the s object Ticker t; // Time Initialisation void doISR() { s.activate(); // Signal the sampling thread to move from WAITING to READY } int main() { s.sampEQueue.call_every(1000, &Sampler::publishSample); // Publish sample s.sampEQueue.dispatch(); }