
simple project to control mirrorless camera
Dependencies: mbed BLE_API nRF51822
Light/Light.h
- Committer:
- suhamera
- Date:
- 2015-10-21
- Revision:
- 0:81f1818af032
File content as of revision 0:81f1818af032:
#ifndef MBED_LIGHT_H #define MBED_LIGHT_H #include "mbed.h" class Light { public: Light(PinName pin); float getLightValue(void); private: AnalogIn _pin; float _LightValue; }; #endif