Simple PID example for LabVIEW

Dependencies:   mbed

Committer:
simon
Date:
Tue Aug 03 15:32:30 2010 +0000
Revision:
1:ddfe18427154

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
simon 1:ddfe18427154 1 /* mbed simple H-bridge motor controller
simon 1:ddfe18427154 2 * Copyright (c) 2007-2010, sford
simon 1:ddfe18427154 3 *
simon 1:ddfe18427154 4 * Permission is hereby granted, free of charge, to any person obtaining a copy
simon 1:ddfe18427154 5 * of this software and associated documentation files (the "Software"), to deal
simon 1:ddfe18427154 6 * in the Software without restriction, including without limitation the rights
simon 1:ddfe18427154 7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
simon 1:ddfe18427154 8 * copies of the Software, and to permit persons to whom the Software is
simon 1:ddfe18427154 9 * furnished to do so, subject to the following conditions:
simon 1:ddfe18427154 10 *
simon 1:ddfe18427154 11 * The above copyright notice and this permission notice shall be included in
simon 1:ddfe18427154 12 * all copies or substantial portions of the Software.
simon 1:ddfe18427154 13 *
simon 1:ddfe18427154 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
simon 1:ddfe18427154 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
simon 1:ddfe18427154 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
simon 1:ddfe18427154 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
simon 1:ddfe18427154 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
simon 1:ddfe18427154 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
simon 1:ddfe18427154 20 * THE SOFTWARE.
simon 1:ddfe18427154 21 */
simon 1:ddfe18427154 22
simon 1:ddfe18427154 23 #include "Motor.h"
simon 1:ddfe18427154 24
simon 1:ddfe18427154 25 #include "mbed.h"
simon 1:ddfe18427154 26
simon 1:ddfe18427154 27 Motor::Motor(PinName pwm, PinName fwd, PinName rev):
simon 1:ddfe18427154 28 _pwm(pwm), _fwd(fwd), _rev(rev) {
simon 1:ddfe18427154 29
simon 1:ddfe18427154 30 // Set initial condition of PWM
simon 1:ddfe18427154 31 _pwm.period(0.001);
simon 1:ddfe18427154 32 _pwm = 0;
simon 1:ddfe18427154 33
simon 1:ddfe18427154 34 // Initial condition of output enables
simon 1:ddfe18427154 35 _fwd = 0;
simon 1:ddfe18427154 36 _rev = 0;
simon 1:ddfe18427154 37 }
simon 1:ddfe18427154 38
simon 1:ddfe18427154 39 void Motor::speed(float speed) {
simon 1:ddfe18427154 40 _fwd = (speed > 0.0);
simon 1:ddfe18427154 41 _rev = (speed < 0.0);
simon 1:ddfe18427154 42 _pwm = abs(speed);
simon 1:ddfe18427154 43 }
simon 1:ddfe18427154 44
simon 1:ddfe18427154 45
simon 1:ddfe18427154 46