Grelet Jacques
/
Ni-MH_V3
example code using statis library for temperature measurement with LM35 and LM335
tickerEvent.h
- Committer:
- greletj
- Date:
- 2012-11-19
- Revision:
- 0:5ce1bc75ff24
- Child:
- 1:5821fa15d6ca
File content as of revision 0:5ce1bc75ff24:
// tickerEvent.h #include "mbed.h" class tickerEvent { private: Ticker ticker; DigitalOut _pin; public: tickerEvent(PinName pin, float delay); ~tickerEvent(void); void toDo(void); };