Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: AX12_final MX106_not_working comunication_1 mbed-dev
Fork of MX106-finaltest by
Joint.h
- Committer:
- clynamen
- Date:
- 2016-07-13
- Revision:
- 11:19e8022f60ea
- Parent:
- 10:2acfa1a84c96
File content as of revision 11:19e8022f60ea:
#include "communication_1/communication_1.h"
#ifndef JOINT_H
#define JOINT_H
class Joint
{
public:
virtual ~Joint() {};
virtual void setID(int NewID) = 0;
virtual int getID() = 0;
// TODO: use enum instead of int
virtual void setMode(int mode) = 0;
virtual void setCWLimit(float degrees) = 0;
virtual void setCCWLimit(float degrees) = 0;
virtual void setGoalPosition(float degrees) = 0;
virtual float getPosition() = 0;
virtual void setSpeed(float degreesS) = 0;
virtual void setMaxSpeed(float degreeS) = 0;
virtual float getTemp() = 0;
virtual float getVolts() = 0;
virtual float getCurrent () = 0;
virtual void setMaxTorque(float torque) = 0 ;
virtual void setMotorEnabled(bool enabled) = 0;
virtual bool isMoving() = 0;
};
#endif
