Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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
Generated on Thu Aug 25 2022 07:07:18 by
