-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJoint.cpp
67 lines (54 loc) · 1.65 KB
/
Joint.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include "Joint.hpp"
#include "Constants.hpp"
Joint::Joint(const byte jointNumber,
const byte stepPin,
const byte directionPin,
const float unitToSteps,
const byte limitSwitchPin,
const char limitDirection,
const long limitPosition)
: JOINT_NUMBER(jointNumber),
stepper(AccelStepper::DRIVER, stepPin, directionPin),
UNIT_TO_STEPS(unitToSteps),
LIMIT_SWITCH_PIN(limitSwitchPin),
LIMIT_DIRECTION(limitDirection),
LIMIT_POSITION(limitPosition) {
pinMode(LIMIT_SWITCH_PIN, INPUT_PULLUP);
stepper.setMaxSpeed(1000);
stepper.setAcceleration(500);
}
Joint::~Joint() {}
void Joint::goLimit(const int speed) {
DEBUG_PRINT("Joint ");
DEBUG_PRINT(JOINT_NUMBER);
DEBUG_PRINT(" going limit with speed ");
DEBUG_PRINTLN(LIMIT_DIRECTION * abs(speed));
if (isOnLimit()) {
DEBUG_PRINT("Joint ");
DEBUG_PRINT(JOINT_NUMBER);
DEBUG_PRINTLN(" already on limit.");
return;
}
stepper.setSpeed(LIMIT_DIRECTION * abs(speed));
while (!isOnLimit()) {
stepper.runSpeed();
}
DEBUG_PRINT("Joint ");
DEBUG_PRINT(JOINT_NUMBER);
DEBUG_PRINTLN(" on limit!");
Serial.println(LIMIT_POSITION);
stepper.setCurrentPosition(LIMIT_POSITION);
stepper.setSpeed(0);
}
bool Joint::isOnLimit(void) {
return digitalRead(LIMIT_SWITCH_PIN);
}
long Joint::calculateMovementSteps(const float units) {
return units * UNIT_TO_STEPS;
}
double Joint::getArticularPosition(void) {
return stepper.currentPosition() / UNIT_TO_STEPS;
}
void Joint::setArticularPosition(double articularPositionUnits) {
stepper.setCurrentPosition(articularPositionUnits * UNIT_TO_STEPS);
}