Dmitry Vilesov / Mbed 2 deprecated power_switch

Dependencies:   mbed BLE_API nRF51822

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers PowerSwitch.h Source File

PowerSwitch.h

00001 #ifndef MBED_POWERSWITCH_H
00002 #define MBED_POWERSWITCH_H
00003  
00004 #include "mbed.h"
00005  
00006 class PowerSwitch {
00007 public:
00008     PowerSwitch(PinName pin);
00009     void doSwitch(bool state, float duration);
00010     bool powerStateOn(void);
00011   
00012 private:  
00013     DigitalOut _pin;
00014     bool  powerState;
00015     void doSwitchEnd(void);
00016     
00017     Ticker switchPeriod;
00018     
00019 };
00020  
00021 #endif