-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKeypadtiller.ino
385 lines (290 loc) · 9.86 KB
/
Keypadtiller.ino
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
#if Tiller == 1
// IR Remote start. ESP32 needs an IR Receiver Module with sense wire connected to IR_Receive_Pin. Pinout is changeable.
void IRREMOTE() {
if (IrReceiver.decode()){
//Serial.println(IrReceiver.decodedIRData.address);
//Serial.println(IrReceiver.decodedIRData.command);
IRDECODE();
delay(300);
IrReceiver.resume();
}
}
void IRDECODE() {
switch(IrReceiver.decodedIRData.command){
case 69: // Remote 'ON'
Key1_Pressed();
break;
case 71: // Remote 'OFF'
Key0_Pressed();
break;
case 67: // Remote 'Light ON'
lcdlightswitch();
break;
case 90: // Remote 'Light OFF'
lcd.noBacklight();
break;
case 7: // Remote '-10'
remotesub10();
break;
case 9: // Remote '+10'
remoteadd10();
break;
case 22: // Remote '-1`'
remotesub1();
break;
case 13: // Remote '+1'
remoteadd1();
break;
case 12: // Remote '-90'
remotesub90();
break;
case 94: // Remote '+90'
remoteadd90();
break;
case 0xFFFFFF: // repeat
break;
default: break;
}
}
/****************************************************/
// End void IRRemote
/************************************************************************/
/***********************************************/
void Key0_Pressed() // Deactivate steering
{
Steering_Mode = 0;
Mode = "OFF";
Steering = false;
Rudder_Stop();
// GPS_Was_Available = false;
Screen = 0;
//toggle = false; // resets key 3 to tack mode instead of wind mode
#if Board == Arduino
lcd.begin(16,2);
#endif
#if BEARINGRATE_OFFSET == 1
bearingrate_Offset = 0; // bearingrate_Offset applied in Tab Subs void Bearing_Rate()
// set with keys 1, 2, 3 maybe 22 reset to 0 in key zero
#endif
LCD();
lcd.setCursor(0,0);
lcd.print(" Autopilot OFF");
//lcd.setCursor(0,3);
// lcd.print(Mode);
} // end Key0 pressed
/*******************************************************/
void Key1_Pressed() // Activate steering and hold course
{
Steering_Mode = 1;
Steering = true;
Mode = "COMP";
heading_to_steer = heading; // tells the pilot to stay on the course at time of activation.
integral_error = 0; // reset integral error
#if RUDDER_OFFSET == 1
Rudder_Offset = rudder_position; // placed before toggle this works for TACK and WIND see notes 10.21.16
#if PID_MODE == 3
integral_error = Rudder_Offset/PID_Ks[0] + bearingrate_Offset/PID_Ks[0]; // sets initial
//integral error = rudder position at time steering engaged divided by
// overall PID gain because multiplied by overall gain in PID equation
#endif
#endif
#if BEARINGRATE_OFFSET == 1
bearingrate_Offset = - bearingrate; // bearingrate_Offset applied in Tab Subs void Bearing_Rate()
// set with keys 1, 2, 3 maybe 22 reset to 0 in key zero
#endif
lcd.setCursor(0,0);
lcd.print(" Autopilot ON");
// lcd.setCursor(0,3);
//lcd.print(" ");
//lcd.setCursor(0,3);
//lcd.print(Mode);
// lcd.setCursor(6, 0);
// lcd.print('Autopilot ON');
//lcd.setCursor(12, 2);
//lcd.print(heading_to_steer,1);
} // end key1 pressed
void redbutton(){ // Toggle between steering activate/deactivate using physical button at Button_Pin
debouncer.update(); // Update the Bounce instance
if ( debouncer.fell() ) {
//if (Steering_Mode==0){Key1_Pressed();}
//else {Key0_Pressed();}
toggleAP();
}
}
void toggleAP(){ // Toggle between steering activate/deactivate
if (Steering_Mode==0){Key1_Pressed();}
else {Key0_Pressed();}
Serial.println("toggle on/off");
Serial.println(heading_to_steer);
//notifyClients(); // send notification to web interface to update values
}
void remotesub10(){
if(Steering_Mode==1) heading_to_steer = heading_to_steer - 10;
if (heading_to_steer < 0) heading_to_steer = heading_to_steer +360;
if (heading_to_steer > 360) heading_to_steer = heading_to_steer -360;
lcd.setCursor(13, 1);
lcd.print(heading_to_steer,1);
Serial.println("minus 10 deg");
// notifyClients(); // send notification to web interface to update values
}
void remoteadd10(){
if(Steering_Mode==1) heading_to_steer = heading_to_steer + 10;
if (heading_to_steer < 0) heading_to_steer = heading_to_steer +360;
if (heading_to_steer > 360) heading_to_steer = heading_to_steer -360;
lcd.setCursor(13, 1);
lcd.print(heading_to_steer,1);
Serial.println("plus 10 deg");
// notifyClients(); // send notification to web interface to update values
}
void remotesub1(){
if(Steering_Mode==1) heading_to_steer = heading_to_steer - 1;
if (heading_to_steer < 0) heading_to_steer = heading_to_steer +360;
if (heading_to_steer > 360) heading_to_steer = heading_to_steer -360;
lcd.setCursor(13, 1);
lcd.print(heading_to_steer,1);
Serial.println("minus 1 deg");
// notifyClients(); // send notification to web interface to update values
}
void remoteadd1(){
if(Steering_Mode==1) heading_to_steer = heading_to_steer + 1;
if (heading_to_steer < 0) heading_to_steer = heading_to_steer +360;
if (heading_to_steer > 360) heading_to_steer = heading_to_steer -360;
lcd.setCursor(13, 1);
lcd.print(heading_to_steer,1);
Serial.println("plus 1 deg");
// notifyClients(); // send notification to web interface to update values
}
void remotesub90(){
if(Steering_Mode==1) heading_to_steer = heading_to_steer - 90;
if (heading_to_steer < 0) heading_to_steer = heading_to_steer +360;
if (heading_to_steer > 360) heading_to_steer = heading_to_steer -360;
lcd.setCursor(13, 1);
lcd.print(heading_to_steer,1);
Serial.println("minus 90 deg");
// notifyClients(); // send notification to web interface to update values
}
void remoteadd90(){
if(Steering_Mode==1) heading_to_steer = heading_to_steer + 90;
if (heading_to_steer < 0) heading_to_steer = heading_to_steer +360;
if (heading_to_steer > 360) heading_to_steer = heading_to_steer -360;
lcd.setCursor(13, 1);
lcd.print(heading_to_steer,1);
Serial.println("plus 90 deg");
// notifyClients(); // send notification to web interface to update values
}
void dodgeleft(){
// if(Steering_Mode == 0 || Steering_Mode ==5) break;
// DODGE_MODE = true;
// Previous_Mode = Steering_Mode;
// Steering_Mode ==5;
ledcWrite(8, 0);
ledcWrite(7, 0);
delay(100);
ledcWrite(8, 0);
ledcWrite(7, 240);
delay(2000);
ledcWrite(8, 0);
ledcWrite(7, 0);
// if(Steering_Mode == 0 || Steering_Mode ==5) return;
Key0_Pressed();
// DODGE_MODE = false;
// Steering_Mode = Previous_Mode;
}
void dodgeright(){
// DODGE_MODE = true;
// Previous_Mode = Steering_Mode;
// Steering_Mode ==5;
ledcWrite(8, 0);
ledcWrite(7, 0);
delay(100);
ledcWrite(7, 0); // changing to ledcwrite for ESP32 PWM
ledcWrite(8, 240);
delay(2000);
ledcWrite(8, 0);
ledcWrite(7, 0);
Key0_Pressed();
// DODGE_MODE = false;
// Steering_Mode = Previous_Mode;
}
void lcdlightswitch(){
if (lcdlight==0){lcd.backlight();}
else {lcd.noBacklight();}
lcdlight = !lcdlight;
Serial.println("LCD lightswitch");
// notifyClients(); // send notification to web interface to update values
}
void Rup(){
deadband = deadband + 0.5;
}
void Rdown(){
if (deadband !=0){
deadband = deadband - 0.5;
}
}
void Gup(){
K_overall = K_overall + 0.5;
}
void Gdown(){
if (K_overall != 0){
K_overall = K_overall - 0.5;
}
}
void Pup(){
K_heading = K_heading + 0.1;
}
void Pdown(){
if (K_heading != 0){
K_heading = K_heading - 0.1;
}
}
void Iup(){
K_integral = K_integral + 0.0001;
}
void Idown(){
if (K_integral != 0){
K_integral = K_integral - 0.0001;
}
}
void Dup(){
#if PIDvals == 3
K_differential = K_differential + 0.01;
#else
K_differential = K_differential + 0.5;
#endif
}
void Ddown(){
if (K_differential != 0){
#if PIDvals == 3
K_differential = K_differential - 0.01;
#else
K_differential = K_differential - 0.5;
#endif
}
}
void MMINup(){
motorspeedMIN = motorspeedMIN + 10;
}
void MMINdown(){
if (motorspeedMIN !=0){
motorspeedMIN = motorspeedMIN - 10;
}
}
void magvarup(){
MagVar_default = MagVar_default + 1;
}
void magvardown(){
MagVar_default = MagVar_default - 1;
}
void PIDmode1(){
#define PID_MODE 1
// PID_MODE = 1;
}
void PIDmode2(){
#define PID_MODE 2
// PID_MODE = 2;
}
void PIDmode3(){
#define PID_MODE 3
// PID_MODE = 3;
}
#endif