forked from Lenbok/SphereBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StepperModel.cpp
179 lines (156 loc) · 4.12 KB
/
StepperModel.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*
* Copyright 2011 by Eberhard Rensch <http://pleasantsoftware.com/developer/3d>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
#include "StepperModel.h"
#include "Arduino.h"
/*
* inEnablePin < 0 => No Endstop
*/
StepperModel::StepperModel(int inDirPin, int inStepPin, int inEnablePin, int inEndStopPin,
long minSC, long maxSC,
double in_kStepsPerRevolution, int in_kMicroStepping)
{
kStepsPerRevolution=in_kStepsPerRevolution;
kMicroStepping=in_kMicroStepping;
dirPin = inDirPin;
stepPin = inStepPin;
enablePin = inEnablePin;
endStopPin = inEndStopPin;
minStepCount=minSC;
maxStepCount=maxSC;
pinMode(dirPin, OUTPUT);
pinMode(stepPin, OUTPUT);
pinMode(enablePin, OUTPUT);
if(endStopPin>=0)
pinMode(endStopPin, INPUT);
digitalWrite(dirPin, LOW);
digitalWrite(stepPin, LOW);
currentStepcount=0;
targetStepcount=0;
steps_per_mm = (int)((kStepsPerRevolution/(45.*M_PI))*kMicroStepping+0.5); // default value for a "normal" egg (45 mm diameter)
enableStepper(false);
}
void StepperModel::resetSteppersForObjectDiameter(double diameter)
{
resetSteppersForObjectCircumference(diameter*M_PI);
}
void StepperModel::resetSteppersForObjectCircumference(double circumference)
{
// Calculate the motor steps required to move per mm.
steps_per_mm = (int)((kStepsPerRevolution/circumference)*kMicroStepping+0.5);
if(endStopPin>=0)
{
#ifdef AUTO_HOMING
autoHoming();
#endif
enableStepper(false);
}
else
resetStepper();
// Serial.print("steps per mm is now: ");
// Serial.println(steps_per_mm);
}
long StepperModel::getStepsForMM(double mm)
{
long steps = (long)(steps_per_mm*mm);
// Serial.print("steps for ");
// Serial.print(mm);
// Serial.print(" mm: ");
// Serial.println(steps);
return steps;
}
/* Currently unused */
/*
void StepperModel::setTargetStepcount(long tsc)
{
targetPosition = (double)tsc/steps_per_mm;
targetStepcount = tsc;
delta = targetStepcount-currentStepcount;
direction = true;
if (delta != 0) {
enableStepper(true);
}
if (delta < 0) {
delta = -delta;
direction = false;
}
}*/
void StepperModel::setTargetPosition(double pos)
{
targetPosition = pos;
targetStepcount = getStepsForMM(targetPosition);
//Serial.println(targetStepcount);
delta = targetStepcount-currentStepcount;
direction = true;
if (delta != 0) {
enableStepper(true);
}
if (delta < 0) {
delta = -delta;
direction = false;
}
}
double StepperModel::getCurrentPosition()
{
return (double)currentStepcount/steps_per_mm;
}
void StepperModel::enableStepper(bool enabled)
{
digitalWrite(enablePin, !enabled);
}
void StepperModel::resetStepper()
{
enableStepper(false);
currentStepcount=0;
targetStepcount=0;
delta=0;
}
void StepperModel::doStep(long intervals)
{
counter += delta;
if (counter >= 0) {
digitalWrite(dirPin, direction?HIGH:LOW);
counter -= intervals;
if (direction) {
if(maxStepCount==0 || currentStepcount<=maxStepCount)
{
digitalWrite(stepPin, HIGH);
currentStepcount++;
}
} else {
if(minStepCount==0 || currentStepcount>=minStepCount)
{
digitalWrite(stepPin, HIGH);
currentStepcount--;
}
}
digitalWrite(stepPin, LOW);
}
}
#ifdef AUTO_HOMING
void StepperModel::autoHoming()
{
enableStepper(true);
digitalWrite(dirPin, LOW);
while(digitalRead(endStopPin))
{
digitalWrite(stepPin, HIGH);
digitalWrite(stepPin, LOW);
delay(1);
}
currentStepcount= minStepCount-16;
}
#endif