Diego Rivera
/
CerraduraBluetooth
Cerradura controlada por bluetooth
Diff: Cerradura.h
- Revision:
- 0:bc7b5ae725ef
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Cerradura.h Fri Feb 19 13:11:19 2016 +0000 @@ -0,0 +1,23 @@ +#ifndef Cerradura_h +#define Cerradura_h +class Cerradura +{ + public: + Cerradura (PinName pin) : actuador(pin) + { + } + + void abrir() + { + actuador=1; + } + void cerrar() + { + actuador=0; + } + + private: + DigitalOut actuador; +}; + +#endif \ No newline at end of file