Utilities classes for the Zumo Robot

Dependents:   ZumoRobotBluetoothControlled Fsl_Zumo

This library represents some useful code for controlling your Zumo Robot.

ZumoRobotManager.h

Committer:
catalincraciun7
Date:
2014-11-27
Revision:
4:dcd52a961392
Parent:
3:b1fde0759c94
Child:
7:d2af97b7cc94

File content as of revision 4:dcd52a961392:

// Craciun Catalin
//  ZumoRobotManager.h
//   © 2014 Catalin Craciun

#ifndef ZumoRobotManagerH
#define ZumoRobotManagerH

class ZumoRobotManager {
    public:
        // Public methods and properties
        ZumoRobotManager();
        ~ZumoRobotManager();
        
        float getVelocityX();
        float getVelocityY();
        void setVelocityX(float newValue);
        void setVelocityY(float newValue);
        bool checkPassword(char toCheck[]);
    private:
        // Private methods and properties
        float velocityX;
        float velocityY;
        void updateMotors();
};

#endif // ZumoRobotManagerH