pwm period is now 200us instead of the default 20ms veml6040 config is now AF_BIT | TRIG_BIT
Dependencies: mbed MMA8451Q USBDevice WakeUp vt100
Fork of afero_node_suntory_2017_06_15 by
sensors/Singletoned.hpp
- Committer:
- wataloh
- Date:
- 2017-06-09
- Revision:
- 21:d03c7bbb9f37
File content as of revision 21:d03c7bbb9f37:
#ifndef _SINGLETONED_HPP_ #define _SINGLETONED_HPP_ template<typename A> class Singletoned { protected: static A *self; public: static A* getSelf() { return self == NULL ? self = new A() : self; } static void delSelf() { if(self!=NULL) { delete self; self = NULL; } } }; template<typename A> A* Singletoned<A>::self=NULL; #endif //_SINGLETONED_HPP_