to move servo
Dependents: mbed-for-McuComm RTOS_Controller RTOS_Controller_v2 RTOS_Controller_v3 ... more
Servo.cpp
00001 /* mbed R/C Servo Library 00002 * 00003 * Copyright (c) 2007-2010 sford, cstyles 00004 * 00005 * Permission is hereby granted, free of charge, to any person obtaining a copy 00006 * of this software and associated documentation files (the "Software"), to deal 00007 * in the Software without restriction, including without limitation the rights 00008 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 00009 * copies of the Software, and to permit persons to whom the Software is 00010 * furnished to do so, subject to the following conditions: 00011 * 00012 * The above copyright notice and this permission notice shall be included in 00013 * all copies or substantial portions of the Software. 00014 * 00015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 00016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 00018 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 00019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 00020 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 00021 * THE SOFTWARE. 00022 */ 00023 00024 #include "Servo.h" 00025 #include "mbed.h" 00026 00027 static float clamp(float value, float min, float max) { 00028 if(value < min) { 00029 return min; 00030 } else if(value > max) { 00031 return max; 00032 } else { 00033 return value; 00034 } 00035 } 00036 00037 Servo::Servo(PinName pin) : _pwm(pin) { 00038 calibrate(); 00039 write(0.5); 00040 } 00041 00042 // _range = 0.0005 00043 void Servo::write(float percent) { 00044 float offset = _range * 2.0 * (percent - 0.5); 00045 _pwm.pulsewidth(0.0015 + clamp(offset, -_range, _range)); 00046 _p = clamp(percent, 0.0, 1.0); 00047 } 00048 00049 void Servo::position(float degrees) { 00050 float offset = _range * (degrees / _degrees); 00051 _pwm.pulsewidth(0.0015 + clamp(offset, -_range, _range)); 00052 _pwm.pulsewidth(0.0015 + clamp(offset, -_range, _range)); 00053 _pwm.pulsewidth(0); 00054 } 00055 00056 void Servo::calibrate(float range, float degrees) { 00057 _range = range; 00058 _degrees = degrees; 00059 } 00060 00061 00062 float Servo::read() { 00063 return _p; 00064 } 00065 00066 Servo& Servo::operator= (float percent) { 00067 write(percent); 00068 return *this; 00069 } 00070 00071 Servo& Servo::operator= (Servo& rhs) { 00072 write(rhs.read()); 00073 return *this; 00074 } 00075 00076 Servo::operator float() { 00077 return read(); 00078 }
Generated on Wed Jul 13 2022 11:53:20 by
1.7.2