Diego Rivera / Mbed 2 deprecated RampaDiscapacitados

Dependencies:   MotorAPasos SRF05 mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Puerta.cpp Source File

Puerta.cpp

00001 #include "Puerta.h"
00002 #include "mbed.h"
00003 
00004 Puerta::Puerta (PinName pin) : _servo (pin)
00005     {
00006     }
00007 
00008 void Puerta::abrir()
00009     {
00010         _servo=1;
00011     }
00012     
00013 void Puerta::cerrar()
00014     {
00015         _servo=0;
00016     }