softwarePWM by ticker, timer

Dependents:   Seeed_Motor_Shield_HelloWorld Official_MedusaIcon Seeed_Motor_Shield adrobo

Revision:
0:1e86036581bd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SoftwarePWM.h	Thu Apr 05 07:09:39 2012 +0000
@@ -0,0 +1,96 @@
+/* mbed Software PWM Library without using PWM pins
+ * Copyright (c) 2012 Takashi Kojo
+ * based and modified, Copyright (c) 2010 Jasper Denkers
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+*/
+
+#ifndef MBED_SOFTWAREPWM_H
+#define MBED_SOFTWAREPWM_H
+
+#include "mbed.h"
+
+/** Class to control a servo on any pin, without using pwm
+ *
+ * Example:
+ * @code
+ * // Keep sweeping servo from left to right
+ * #include "mbed.h"
+ * #include "Servo.h"
+ *
+ * Servo Servo1(p20);
+ *
+ * Servo1.Enable(1500,20000);
+ *
+ * while(1) {
+ *     for (int pos = 1000; pos < 2000; pos += 25) {
+ *         Servo1.SetPosition(pos);
+ *         wait_ms(20);
+ *     }
+ *     for (int pos = 2000; pos > 1000; pos -= 25) {
+ *         Servo1.SetPosition(pos);
+ *         wait_ms(20);
+ *     }
+ * }
+ * @endcode
+ */
+
+
+class SoftwarePWM {
+
+public:
+    /** Create a new SoftwarePWM object on any mbed pin
+      *
+      * @param Pin Pin on mbed to connect PWM device to
+     */
+    SoftwarePWM(PinName Pin);
+
+    /** Change the position of the PWM. Position in us
+      *
+      * @param NewPos The new value of the PWM position (us)
+     */
+    void SetPosition(int NewPos);
+
+    /** Enable the PWM. Without enabling the PWM won't be running. Startposition and period both in us.
+      *
+      * @param StartPos The position of the PWM to start (us)
+      * @param Period The time between every pulse. 20000 us = 50 Hz(standard) (us)
+     */
+    void Enable(int StartPos, int Period);
+
+    /** Disable the PWM. After disabling the PWM won't get any signal anymore
+      *
+      */
+    void Disable();
+
+private:
+    void StartPulse();
+    void EndPulse();
+
+    int Position;
+    DigitalOut SoftwarePWMPin;
+    Ticker Pulse;
+    Timeout PulseStop;
+};
+
+
+extern SoftwarePWM Intensity[] ;
+#define INTENSITY_FACTOR 10 
+
+#endif
\ No newline at end of file