Franjo Tudek

Dependencies:   mbed SeeedShieldBot BluetoothSerial

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

Revision:
0:90b835ec611a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Doorbell.h	Fri May 07 15:22:28 2021 +0000
@@ -0,0 +1,12 @@
+#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