complete

Dependencies:   4DGL-uLCD-SE PinDetect mbed

Fork of my2036lab2robotLCD by jim hamblen

Robot.h

Committer:
4180_1
Date:
2015-01-23
Revision:
0:343fbeea672c
Child:
1:5a1311f0ea06

File content as of revision 0:343fbeea672c:

class Robot
{
public:
    void draw() {
//needs code here
    }
    void erase() {
//needs code here
    }
    void moveForward(int distance) {
//needs code here
    }
    void moveBackward(int distance) {
//needs code here
    }
    void moveLeft(int distance) {
//needs code here
    }
    void moveRight(int distance) {
//needs code here
    }
//needs code to init x,y
    Robot() {
    }
private:
    int xPosition;
    int yPosition;
};