Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: TS_DISCO_F746NG mbed BufferedSerial LCD_DISCO_F746NG mbed-rtos Trigo BSP_DISCO_F746NG
Diff: Motor.h
- Revision:
- 0:88706d6abbf7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Motor.h	Wed Nov 23 15:19:33 2016 +0000
@@ -0,0 +1,16 @@
+#include "mbed.h"
+
+
+class Motor : public PwmOut
+{
+    public:
+
+        Motor(PinName pin) : PwmOut(pin) {
+        }
+
+    public:    
+        void StartMotor_Scan();
+
+    public:
+        void StopMotor_Scan();
+};
\ No newline at end of file