Franjo Tudek

Dependencies:   mbed SeeedShieldBot BluetoothSerial

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Doorbell.h Source File

Doorbell.h

00001 #ifndef DoorBell_h
00002 #define DoorBell_h
00003 #include "mbed.h"
00004 class Bell{
00005 public:
00006     Bell(PinName Buzzer);
00007     void Buzz(int f, int b);
00008     
00009 private:
00010     PwmOut Buzzer; 
00011 };
00012 #endif