Franjo Tudek

Dependencies:   mbed SeeedShieldBot BluetoothSerial

https://os.mbed.com/media/uploads/franjo1/shema.png

Doorbell.h

Committer:
franjo1
Date:
2021-05-07
Revision:
0:90b835ec611a

File content as of revision 0:90b835ec611a:

#ifndef DoorBell_h
#define DoorBell_h
#include "mbed.h"
class Bell{
public:
    Bell(PinName Buzzer);
    void Buzz(int f, int b);
    
private:
    PwmOut Buzzer; 
};
#endif