Xbeat beta code as published by Andre Moehl ( http://mbed.org/users/hoppel/ ) With a slightly modified serial port definition

Dependencies:   mbed

motor.h

Committer:
n0p
Date:
2011-02-04
Revision:
0:badcd0d61c7b

File content as of revision 0:badcd0d61c7b:

/*
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * @file motor.h
 * @author Andre Moehl
 * @date 01/2011
 * @brief Servo Motor Class definition
 */
 


#ifndef __MOTOR_H
#define __MOTOR_H

/*--- Includes ------------------------*/
#include "mbed.h"

/*--- Class Declaration----------------*/

/**
    Class Motor
*/
class Motor
{
    
    public:
        /** @brief Constructor
        *   @parameter Pin Servo Motor Pin
        *   @parameter periode Periode for Servo Signal
        */
        Motor(PinName Pin, int periode);   
        ~Motor();
        /** @brief Sets the pulse width ergo the servo rotation speed 
        *   @parameter value pulsewidth in microseconds as integer
        */
        void speed(int value);     
                
    private:
        PwmOut _PwmPin;

};

#endif