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-13
Revision:
3:b1fde0759c94
Parent:
2:036da44b023e
Child:
4:dcd52a961392

File content as of revision 3:b1fde0759c94:

// 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;
};

#endif // ZumoRobotManagerH