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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
#include <AccelStepper.h>
#include <WiFi.h>
#include <WebServer.h>
#include <esp_wifi.h>
///////////////////////////////////
// motor
///////////////////////////////////
// #define dirPin 3
// #define stepPin 2
#define dirPin GPIO_NUM_3
#define stepPin GPIO_NUM_2
#define homeLimitSwitchPin 0
#define endLimitSwitchPin 1
#define LimitSwitchPressed 0
#define LimitSwitchReleased 1
#define enableStepperPin GPIO_NUM_6
constexpr auto motorInterfaceType = AccelStepper::MotorInterfaceType::FULL2WIRE;
//#define motorMaxStepsPerSecond 65535
#define motorMaxStepsPerSecond 1600
// #define motorStepsPerSecond 1600
#define motorStepsPerSecond 800
#define motorAcceleration 30000
//uint8_t newMACAddress[] = {0x32, 0xAE, 0xA4, 0x09, 0x0D, 0x66};
AccelStepper stepper = AccelStepper(motorInterfaceType, stepPin, dirPin);
bool stepperRun{false};
//bool stepperRun{true};
///////////////////////////////////
// wifi
///////////////////////////////////
constexpr bool enableWifi{true};
//constexpr bool enableWifi{false};
int reconnectsCount = 0;
//const char* ssid = "toya99760449_5GHz";
const char* ssid = "toya99760449";
const char* password = "92rK34Umvc";
const uint16_t port{80};
const String accelerationArg = "acceleration";
const String currentPositionArg = "currentPosition";
const String maxSpeedArg = "maxSpeed";
const String speedArg = "speed";
const String stepsArg = "steps";
#define s Serial
WebServer server(port);
///////////////////////////////////
// time
///////////////////////////////////
unsigned long prevMillis{0};
bool step{true};
void handleRoot()
{
server.send(200, "text/plain", "hello http\n");
}
void handleStart()
{
server.send(200, "text/plain", "started\n");
stepperRun = true;
stepper.enableOutputs();
//stepper.moveTo(8000);
bool backward = rand() % 2;
stepper.move(8000 * (backward ? -1 : 1));
}
void handleSetParams()
{
String reply;
if (server.hasArg(maxSpeedArg)) {
const auto maxSpeedStr = server.arg(maxSpeedArg);
const auto maxSpeed = maxSpeedStr.toFloat();
stepper.setMaxSpeed(maxSpeed);
reply += "set " + maxSpeedArg + " to " + maxSpeedStr + '\n';
}
if (server.hasArg(speedArg)) {
const auto speedStr = server.arg(speedArg);
const auto speed = speedStr.toFloat();
stepper.setSpeed(speed);
reply += "set " + speedArg + " to " + speedStr + '\n';
}
if (server.hasArg(currentPositionArg)) {
const auto currentPositionStr = server.arg(currentPositionArg);
const auto currentPosition = currentPositionStr.toFloat();
stepper.setCurrentPosition(currentPosition);
reply += "set " + currentPositionArg + " to " + currentPositionStr + '\n';
}
if (server.hasArg(accelerationArg)) {
const auto accelerationStr = server.arg(accelerationArg);
const auto acceleration = accelerationStr.toFloat();
stepper.setAcceleration(acceleration);
reply += "set " + accelerationArg + " to " + accelerationStr + '\n';
}
if (reply.length() == 0)
{
server.send(500, "text/plain", "missing params\n");
}
server.send(200, "text/plain", reply);
}
void handleMove()
{
// TODO: implement 'mm' floating-point argument
if (!server.hasArg(stepsArg)) {
server.send(500, "text/plain", "'steps' arg is missing\n");
return;
}
const auto stepsStr = server.arg(stepsArg);
s.print("handleMove: arg(stepsArg): ");
s.println(stepsStr);
server.send(200, "text/plain", "move " + stepsStr + " steps\n");
stepperRun = true;
stepper.enableOutputs();
//stepper.moveTo(8000);
const auto steps = stepsStr.toInt();
//bool backward = rand() % 2;
//stepper.move(8000 * (backward ? -1 : 1));
stepper.move(steps);
}
void handleStop()
{
server.send(200, "text/plain", "stopped\n");
stepperRun = false;
stepper.disableOutputs();
}
void handleDisconnectWiFi()
{
server.send(200, "text/plain", "disconnecting\n");
delay(500);
WiFi.disconnect();
s.println("disconnected from WiFi");
}
void setupWifi()
{
//delay(1000);
if (!WiFi.begin(ssid, password, 10))
{
s.println("cannot begin wifi");
}
//WiFi.setTxPower(WIFI_POWER_MINUS_1dBm);
//WiFi.setTxPower(WIFI_POWER_2dBm);
WiFi.setTxPower(WIFI_POWER_15dBm);
//WiFi.setTxPower(WIFI_POWER_8_5dBm);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
s.print("connecting ");
s.println(reconnectsCount);
++reconnectsCount;
}
s.println("");
s.println("WiFi connected.");
s.println("IP address: ");
s.println(WiFi.localIP());
server.on("/", handleRoot);
server.on("/start", handleStart);
server.on("/setParams", handleSetParams);
server.on("/move", handleMove);
server.on("/stop", handleStop);
server.on("/disconnectWiFi", handleDisconnectWiFi);
server.begin();
s.println("HTTP server started");
}
bool atHome()
{
return digitalRead(homeLimitSwitchPin) == LimitSwitchPressed;
}
bool atEnd()
{
return digitalRead(endLimitSwitchPin) == LimitSwitchPressed;
}
void setup() {
pinMode(homeLimitSwitchPin, INPUT);
pinMode(endLimitSwitchPin, INPUT);
s.begin(115200);
if (enableWifi)
{
setupWifi();
}
stepper.setMaxSpeed(motorMaxStepsPerSecond);
stepper.setEnablePin(enableStepperPin);
stepper.setPinsInverted(false, false, true); // invert enable pin
stepper.setSpeed(motorStepsPerSecond);
stepper.setAcceleration(motorAcceleration);
}
void loop() {
const bool doStop = (stepperRun == true && (atHome() || atEnd()));
if (doStop)
{
stepperRun = false;
stepper.disableOutputs();
}
if (stepperRun && stepper.distanceToGo() != 0)
{
stepper.run();
// processing wifi requests takes too much time,
// so returning here. limit switches should do the rest
return;
}
else
{
stepperRun = false;
//stepper.disableOutputs();
}
if (enableWifi)
{
server.handleClient();
}
}
|