Colour sensors calibrated

Dependencies:   mbed-rtos mbed Servo QEI

Fork of ICRSEurobot13 by Thomas Branch

Processes/MotorControl/MotorControl.h

Committer:
madcowswe
Date:
2013-04-10
Revision:
26:b16f1045108f
Parent:
23:6e3218cf75f8

File content as of revision 26:b16f1045108f:


#ifndef MOTOR_CONTROL_H
#define MOTOR_CONTROL_H

namespace MotorControl{
    
    extern float fwdcmd;
    extern float omegacmd;
    
    inline void set_fwdcmd(float infwdcmd){
        fwdcmd = infwdcmd;
    }
    
    inline void set_omegacmd(float inomega){
        omegacmd = inomega;
    }
    
    void motor_control_isr();
    
}

#endif //MOTOR_CONTROL_H