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.
Dependents: ServoTest ServoTest Nucleo_coffee NervousPuppySprintOne ... more
Diff: Servo.cpp
- Revision:
- 0:30b972d2dcec
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Servo.cpp Sun Oct 17 13:13:50 2010 +0000
@@ -0,0 +1,26 @@
+#include "Servo.h"
+#include "mbed.h"
+
+ Servo::Servo(PinName Pin) : ServoPin(Pin) {}
+
+ void Servo::SetPosition(int Pos) {
+ Position = Pos;
+ }
+
+ void Servo::StartPulse() {
+ ServoPin = 1;
+ PulseStop.attach_us(this, &Servo::EndPulse, Position);
+ }
+
+ void Servo::EndPulse() {
+ ServoPin = 0;
+ }
+
+ void Servo::Enable(int StartPos, int Period) {
+ Position = StartPos;
+ Pulse.attach_us(this, &Servo::StartPulse, Period);
+ }
+
+ void Servo::Disable() {
+ Pulse.detach();
+ }
\ No newline at end of file