Diego Rivera / Mbed 2 deprecated CerraduraBluetooth

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Cerradura.h Source File

Cerradura.h

00001 #ifndef Cerradura_h
00002 #define Cerradura_h
00003 class Cerradura
00004 {
00005     public:
00006         Cerradura (PinName pin) : actuador(pin)
00007         {
00008         }
00009         
00010         void abrir()
00011         {
00012             actuador=1;
00013         }
00014         void cerrar()
00015         {
00016             actuador=0;
00017         }
00018         
00019     private:
00020         DigitalOut actuador;
00021 };
00022 
00023 #endif