forked from s60sc/ESP32-CAM_MJPEG2SD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperipherals.cpp
705 lines (630 loc) · 24.6 KB
/
peripherals.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
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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
// Optional peripherals, to support:
// - pin sensors eg PIR
// - pin controllers eg Lamp
// - servos, eg camera pan / tilt / steer
// - DS18B20 temperature sensor
// - battery voltage measurement
// - lamp led driver (PWM or WS2812)
// - H-bridge motor controller
// - 3 pin joystick
//
// Peripherals can be hosted directly on the client ESP, or on
// a separate IO Extender ESP if the client ESP has limited free
// pins, eg ESP-Cam module
// External peripherals should have low data rate and not require fast response,
// so interrupt driven input pins should be monitored internally by the client.
// Peripherals that need a clocked data stream such as microphones are not suitable
//
// Pin numbers must be > 0.
//
// The client and extender must be compiled with the same version of
// the peripherals.cpp and have compatible configuration settings
// with respect to pin numbers etc
//
// s60sc 2022 - 2023
//
// ESP32-S3 has 8 LEDC PWM channels
// 0 - Camera
// 1 - Camera
// 2 - Camera LED
// 3 - Pan Servo
// 4 - Tilt Servo
// 5 - Steering Servo
// 6 - spare
// 7 - spare
#include "appGlobals.h"
#include "driver/ledc.h"
#include "driver/mcpwm.h"
// IO Extender use
bool useIOextender; // true to use IO Extender, otherwise false
bool useUART0; // true to use UART0, false for UART1
int uartTxdPin;
int uartRxdPin;
#define EXT_IO_PING 199 // dummy pin number for ping heartbeat
static bool extIOpinged = true;
// peripherals used
bool pirUse; // true to use PIR for motion detection
bool lampUse; // true to use lamp
uint8_t lampLevel; // brightness of on board lamp led
bool lampAuto; // if true in conjunction with pirUse & lampUse, switch on lamp when PIR activated at night
bool lampNight; // if true, lamp comes on at night (not used)
int lampType; // how lamp is used
bool servoUse; // true to use pan / tilt servo control
bool voltUse; // true to report on ADC pin eg for for battery
// microphone cannot be used on IO Extender
bool micUse; // true to use external I2S microphone
bool wakeUse = false; // true to allow app to sleep and wake
bool stickUse; // true to use joystick
// Pins used by peripherals
// To use IO Extender, use config web page to set pin numbers on client to be those used on IO Extender
// and add EXTPIN, eg: on config web page, set ds18b20Pin to 110 (100+ 10) to use pin 10 on IO Extender
// and set ds18b20Pin to 10 on IO Extender
// If IO Extender not being used, ensure pins on ESP-Cam not defined for multiple use
// sensors
int pirPin; // if pirUse is true
int lampPin; // if lampUse is true
int wakePin; // if wakeUse is true
// Camera servos
int servoPanPin; // if servoUse is true
int servoTiltPin;
// ambient / module temperature reading
int ds18b20Pin; // if USE_DS18B20 true
// batt monitoring
// only pin 33 can be used on ESP32-Cam module as it is the only available analog pin
int voltPin;
// additional peripheral configuration
// configure for specific servo model, eg for SG90
int servoMinAngle; // degrees
int servoMaxAngle;
int servoMinPulseWidth; // usecs
int servoMaxPulseWidth;
int servoDelay; // control rate of change of servo angle using delay
int servoCenter = 90; // angle in degrees where servo is centered
// configure battery monitor
int voltDivider; // set battVoltageDivider value to be divisor of input voltage from resistor divider
// eg: 100k / 100k would be divisor value 2
float voltLow; // voltage level at which to send out email alert
int voltInterval; // interval in minutes to check battery voltage
// RC pins and control
bool RCactive = false;
int motorRevPin;
int motorFwdPin;
int servoSteerPin;
int lightsRCpin;
int pwmFreq = 50;
int maxSteerAngle;
int maxDutyCycle;
int minDutyCycle;
bool allowReverse;
bool autoControl;
int waitTime;
int stickzPushPin; // digital pin connected to switch output
int stickXpin; // analog pin connected to X output
int stickYpin; // analog pin connected to Y output
void doIOExtPing() {
// check that IO_Extender is available
if (useIOextender && !IS_IO_EXTENDER) {
// client sends ping
if (!extIOpinged) LOG_WRN("IO_Extender failed to ping");
extIOpinged = false;
externalPeripheral(EXT_IO_PING);
// extIOpinged set by setPeripheralResponse() from io extender
}
}
// individual pin sensor / controller functions
bool pirVal = false;
bool getPIRval() {
// get PIR status
// if use external PIR, will have delayed response
if (!externalPeripheral(pirPin)) pirVal = digitalRead(pirPin);
return pirVal;
}
// Control a Pan-Tilt-Camera stand using two servos connected to pins specified above
// Or control an RC servo
// Only tested for SG90 style servos
#define PWM_FREQ 50 // hertz
#define DUTY_BIT_DEPTH 14 // max for ESP32-C3
#define USECS 1000000
#define SERVO_PAN_CHANNEL LEDC_CHANNEL_3
#define SERVO_TILT_CHANNEL LEDC_CHANNEL_4
#define SERVO_STEER_CHANNEL LEDC_CHANNEL_5
TaskHandle_t servoHandle = NULL;
static int newTiltVal, newPanVal, newSteerVal;
static int oldPanVal, oldTiltVal, oldSteerVal;
static int dutyCycle (int angle) {
// calculate duty cycle for given angle
angle = constrain(angle, servoMinAngle, servoMaxAngle);
int pulseWidth = map(angle, servoMinAngle, servoMaxAngle, servoMinPulseWidth, servoMaxPulseWidth);
return pow(2, DUTY_BIT_DEPTH) * pulseWidth * PWM_FREQ / USECS;
}
static int changeAngle(uint8_t chan, int newVal, int oldVal, bool useDelay = true) {
// change angle of given servo
int incr = newVal - oldVal > 0 ? 1 : -1;
for (int angle = oldVal; angle != newVal + incr; angle += incr) {
ledcWrite(chan, dutyCycle(angle));
if (useDelay) delay(servoDelay); // set rate of change
}
return newVal;
}
static void servoTask(void* pvParameters) {
// update servo position from user input
while (true) {
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
if (newSteerVal != oldSteerVal) oldSteerVal = changeAngle(SERVO_STEER_CHANNEL, newSteerVal, oldSteerVal, false);
if (newPanVal != oldPanVal) oldPanVal = changeAngle(SERVO_PAN_CHANNEL, newPanVal, oldPanVal);
if (newTiltVal != oldTiltVal) oldTiltVal = changeAngle(SERVO_TILT_CHANNEL, newTiltVal, oldTiltVal);
}
}
void setCamPan(int panVal) {
// change camera pan angle
newPanVal = panVal;
if (servoUse && !externalPeripheral(servoPanPin, panVal))
if (servoHandle != NULL) xTaskNotifyGive(servoHandle);
}
void setCamTilt(int tiltVal) {
// change camera tilt angle
newTiltVal = tiltVal;
if (servoUse && !externalPeripheral(servoTiltPin, tiltVal))
if (servoHandle != NULL) xTaskNotifyGive(servoHandle);
}
void setSteering(int steerVal) {
// change steering angle
newSteerVal = steerVal;
if (servoHandle != NULL) xTaskNotifyGive(servoHandle);
}
static void prepServos() {
if ((servoPanPin < EXTPIN) && servoUse) {
if (servoPanPin) {
ledcSetup(SERVO_PAN_CHANNEL, PWM_FREQ, DUTY_BIT_DEPTH);
ledcAttachPin(servoPanPin, SERVO_PAN_CHANNEL);
} else LOG_WRN("No servo pan pin defined");
if (servoTiltPin) {
ledcSetup(SERVO_TILT_CHANNEL, PWM_FREQ, DUTY_BIT_DEPTH);
ledcAttachPin(servoTiltPin, SERVO_TILT_CHANNEL);
} else LOG_WRN("No servo tilt pin defined");
if (!servoPanPin && !servoTiltPin) servoUse = false;
}
if (servoSteerPin) {
ledcSetup(SERVO_STEER_CHANNEL, PWM_FREQ, DUTY_BIT_DEPTH);
ledcAttachPin(servoSteerPin, SERVO_STEER_CHANNEL);
}
oldPanVal = oldTiltVal = oldSteerVal = servoCenter + 1;
if (servoUse || servoSteerPin) {
xTaskCreate(&servoTask, "servoTask", SERVO_STACK_SIZE, NULL, 1, &servoHandle);
// initial angle
if (servoPanPin) setCamPan(servoCenter);
if (servoTiltPin) setCamTilt(servoCenter);
if (servoSteerPin) setSteering(servoCenter);
}
}
/* Read temperature from DS18B20 connected to pin specified above
Use Arduino Manage Libraries to install OneWire and DallasTemperature
DS18B20 is a one wire digital temperature sensor
Pin layout from flat front L-R: Gnd, data, 3V3.
Need a 4.7k resistor between 3V3 and data line
Runs in its own task as there is a 750ms delay to get temperature
If DS18B20 is not present, use ESP internal temperature sensor
*/
#if USE_DS18B20
#include <OneWire.h>
#include <DallasTemperature.h>
#endif
#if CONFIG_IDF_TARGET_ESP32
extern "C" {
// Use internal on chip temperature sensor (if present)
uint8_t temprature_sens_read(); // sic
}
#elif CONFIG_IDF_TARGET_ESP32S3 || CONFIG_IDF_TARGET_ESP32C3
#include "driver/temp_sensor.h"
#endif
// configuration
#define NO_TEMP -127
static float dsTemp = NO_TEMP;
TaskHandle_t DS18B20handle = NULL;
static bool haveDS18B20 = false;
static void DS18B20task(void* pvParameters) {
#if USE_DS18B20
// get current temperature from DS18B20 device
OneWire oneWire(ds18b20Pin);
DallasTemperature sensors(&oneWire);
while (true) {
sensors.begin();
uint8_t deviceAddress[8];
sensors.getAddress(deviceAddress, 0);
if (deviceAddress[0] == 0x28) {
uint8_t tryCnt = 10;
while (tryCnt) {
sensors.requestTemperatures();
dsTemp = sensors.getTempCByIndex(0);
// ignore occasional duff readings
if (dsTemp > NO_TEMP) tryCnt = 10;
else tryCnt--;
delay(1000);
}
}
// retry setting up ds18b20
delay(10000);
}
#endif
}
void prepTemperature() {
#if USE_DS18B20
if (ds18b20Pin < EXTPIN) {
if (ds18b20Pin) {
xTaskCreate(&DS18B20task, "DS18B20task", DS18B20_STACK_SIZE, NULL, 1, &DS18B20handle);
haveDS18B20 = true;
LOG_INF("Using DS18B20 sensor");
} else LOG_WRN("No DS18B20 pin defined, using chip sensor if present");
}
#endif
#if CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32S3
// setup internal sensor
temp_sensor_config_t temp_sensor = TSENS_CONFIG_DEFAULT();
temp_sensor.dac_offset = TSENS_DAC_L2; // TSENS_DAC_L2 is default. L4(-40℃ ~ 20℃), L2(-10℃ ~ 80℃) L1(20℃ ~ 100℃) L0(50℃ ~ 125℃)
temp_sensor_set_config(temp_sensor);
temp_sensor_start();
#endif
}
float readTemperature(bool isCelsius) {
// return latest read temperature value in celsius (true) or fahrenheit (false), unless error
#if USE_DS18B20
// use external DS18B20 sensor if available, else use local value
externalPeripheral(ds18b20Pin);
#endif
#if CONFIG_IDF_TARGET_ESP32
// convert on chip raw temperature in F to Celsius degrees
if (!haveDS18B20) dsTemp = (temprature_sens_read() - 32) / 1.8; // value of 55 means not present
#elif CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32S3
if (!haveDS18B20) temp_sensor_read_celsius(&dsTemp);
#endif
return (dsTemp > NO_TEMP) ? (isCelsius ? dsTemp : (dsTemp * 1.8) + 32.0) : dsTemp;
}
float getNTCcelsius (uint16_t resistance, float oldTemp) {
// convert NTC thermistor resistance reading to celsius
double Temp = log(resistance);
Temp = 1 / (0.001129148 + (0.000234125 + (0.0000000876741 * Temp * Temp )) * Temp);
Temp = (Temp == 0) ? oldTemp : Temp - 273.15; // if 0 then didnt get a reading
return (float) Temp;
}
/************ battery monitoring ************/
// Read voltage from battery connected to ADC pin
// input battery voltage may need to be reduced by voltage divider resistors to keep it below 3V3.
static float currentVoltage = -1.0; // no monitoring
TaskHandle_t battHandle = NULL;
float readVoltage() {
// use external voltage sensor if available, else use local value
externalPeripheral(voltPin);
return currentVoltage;
}
static void battTask(void* parameter) {
if (voltInterval < 1) voltInterval = 1;
while (true) {
// convert analog reading to corrected voltage. analogReadMilliVolts() not working
currentVoltage = (float)(smoothAnalog(voltPin)) * 3.3 * voltDivider / MAX_ADC;
static bool sentExtAlert = false;
if (currentVoltage < voltLow && !sentExtAlert) {
sentExtAlert = true; // only sent once per esp32 session
char battMsg[20];
sprintf(battMsg, "Voltage is %0.2fV", currentVoltage);
externalAlert("Low battery", battMsg);
}
delay(voltInterval * 60 * 1000); // mins
}
vTaskDelete(NULL);
}
static void setupBatt() {
if (voltUse && (voltPin < EXTPIN)) {
if (voltPin) {
xTaskCreate(&battTask, "battTask", BATT_STACK_SIZE, NULL, 1, &battHandle);
LOG_INF("Monitor batt voltage");
debugMemory("setupBatt");
} else LOG_WRN("No voltage pin defined");
}
}
/********************* LED Lamp Driver **********************/
#define RGB_BITS 24 // WS2812 has 24 bit color in RGB order
#define LAMP_LEDC_CHANNEL 2 // Use channel not required by camera
static bool lampInit = false;
#if defined(CAMERA_MODEL_ESP32S3_EYE) || defined(CAMERA_MODEL_FREENOVE_ESP32S3_CAM)
static rmt_obj_t* rmtWS2812;
static rmt_data_t ledData[RGB_BITS];
#endif
static void setupLamp() {
// setup lamp LED according to board type
// assumes led wired as active high (ESP32 lamp led on pin 4 is active high, signal led on pin 33 is active low)
if ((lampPin < EXTPIN) && lampUse) {
if (lampPin) {
lampInit = true;
#if defined(CAMERA_MODEL_AI_THINKER)
// High itensity white led
ledcSetup(LAMP_LEDC_CHANNEL, 5000, 4);
ledcAttachPin(lampPin, LAMP_LEDC_CHANNEL);
LOG_INF("Setup Lamp Led for ESP32 Cam board");
#elif defined(CAMERA_MODEL_ESP32S3_EYE) || defined(CAMERA_MODEL_FREENOVE_ESP32S3_CAM)
// Single WS2812 RGB high intensity led on pin 48
rmtWS2812 = rmtInit(lampPin, true, RMT_MEM_64);
if (rmtWS2812 == NULL) LOG_ERR("Failed to setup WS2812 with pin %u", lampPin);
else {
rmtSetTick(rmtWS2812, 100);
LOG_INF("Setup Lamp Led for ESP32S3 Cam board");
}
#else
// unknown board, assume PWM LED
ledcSetup(LAMP_LEDC_CHANNEL, 5000, 4);
ledcAttachPin(lampPin, LAMP_LEDC_CHANNEL);
LOG_INF("Setup Lamp Led");
#endif
} else {
lampUse = false;
LOG_WRN("No Lamp Led pin defined");
}
}
}
void setLamp(uint8_t lampVal) {
// control lamp status
if (!lampUse) lampVal = 0;
if (!externalPeripheral(lampPin, lampVal)) {
if (!lampInit) setupLamp();
if (lampInit) {
#if defined(CAMERA_MODEL_AI_THINKER)
// set lamp brightness using PWM (0 = off, 15 = max)
ledcWrite(LAMP_LEDC_CHANNEL, lampVal);
#elif defined(CAMERA_MODEL_ESP32S3_EYE) || defined(CAMERA_MODEL_FREENOVE_ESP32S3_CAM)
// Set white color and apply lampVal (0 = off, 15 = max)
uint8_t RGB[3]; // each color is 8 bits
lampVal = lampVal == 15 ? 255 : lampVal * 16;
for (uint8_t i = 0; i < 3; i++) {
RGB[i] = lampVal;
// apply WS2812 bit encoding pulse timing per bit
for (uint8_t j = 0; j < 8; j++) {
int bit = (i * 8) + j;
if ((RGB[i] << j) & 0x80) { // get left most bit first
// bit = 1
ledData[bit].level0 = 1;
ledData[bit].duration0 = 8;
ledData[bit].level1 = 0;
ledData[bit].duration1 = 4;
} else {
// bit = 0
ledData[bit].level0 = 1;
ledData[bit].duration0 = 4;
ledData[bit].level1 = 0;
ledData[bit].duration1 = 8;
}
}
}
rmtWrite(rmtWS2812, ledData, RGB_BITS);
#else
// other board
// set lamp brightness using PWM (0 = off, 15 = max)
ledcWrite(LAMP_LEDC_CHANNEL, lampVal);
#endif
}
}
}
void twinkleLed(uint8_t ledPin, uint16_t interval, uint8_t blinks) {
// twinkle led, for given number of blinks,
// with given interval in ms between blinks
bool ledState = true;
for (int i=0; i<blinks*2; i++) {
digitalWrite(ledPin, ledState);
delay(interval);
ledState = !ledState;
}
}
void setLights(bool lightsOn) {
// External on / off light
if (lightsRCpin > 0) digitalWrite(lightsRCpin, lightsOn);
}
/********************* interact with UART **********************/
void setPeripheralResponse(const byte pinNum, const uint32_t responseData) {
// callback for Client uart task
// updates peripheral stored input value when response received
// map received pin number to peripheral
LOG_DBG("Pin %d, data %u", pinNum, responseData);
if (pinNum == pirPin)
memcpy(&pirVal, &responseData, sizeof(pirVal)); // set PIR status
else if (pinNum == voltPin)
memcpy(¤tVoltage, &responseData, sizeof(currentVoltage)); // set current batt voltage
else if (pinNum == ds18b20Pin)
memcpy(&dsTemp, &responseData, sizeof(dsTemp)); // set current temperature
else if (pinNum == EXT_IO_PING)
extIOpinged = true;
else if (pinNum != lampPin && pinNum != servoPanPin && pinNum != servoTiltPin)
LOG_ERR("Undefined pin number requested: %d ", pinNum);
}
uint32_t usePeripheral(const byte pinNum, const uint32_t receivedData) {
// callback for IO Extender to interact with peripherals
uint32_t responseData = 0;
int ival;
LOG_DBG("Pin %d, data %u", pinNum, receivedData);
// map received pin number to peripheral
if (pinNum == servoTiltPin) {
// send tilt angle to servo
memcpy(&ival, &receivedData, sizeof(ival));
setCamTilt(ival);
} else if (pinNum == servoPanPin) {
// send pan angle to servo
memcpy(&ival, &receivedData, sizeof(ival));
setCamPan(ival);
} else if (pinNum == pirPin) {
// get PIR status
bool bval = getPIRval();
memcpy(&responseData, &bval, sizeof(bval));
} else if (pinNum == lampPin) {
// set Lamp status
memcpy(&ival, &receivedData, sizeof(ival));
setLamp(ival);
} else if (pinNum == ds18b20Pin) {
// get current temperature
float fval = dsTemp;
memcpy(&responseData, &fval, sizeof(fval));
} else if (pinNum == voltPin) {
// get current batt voltage
float fval = currentVoltage;
memcpy(&responseData, &fval, sizeof(fval));
} else if (pinNum == (EXT_IO_PING - EXTPIN)) {
LOG_INF("Received client ping");
} else LOG_ERR("Undefined pin number requested: %d ", pinNum);
return responseData;
}
static void prepPIR() {
if ((pirPin < EXTPIN) && pirUse) {
if (pirPin) pinMode(pirPin, INPUT_PULLDOWN); // pulled high for active
else {
pirUse = false;
LOG_WRN("No PIR pin defined");
}
}
}
/*
MCPWM peripheral has 2 units, ech unit can support:
- 3 pairs of PWM outputs (6 pins)
- 3 fault input pins to detect faults like overcurrent, overvoltage, etc.
- 3 sync input pins to synchronize output signals
- 3 input pins to gather feedback from controlled motors, using e.g. hall sensors
MX1508 DC Motor Driver with PWM Control
- 4 PWM gpio inputs, 2 per motor (forward & reverse)
- Two H-channel drive circuits for 2 DC motors
- 1.5A (peak 2A)
- 2-10V DC input, 1.8-7V Dc output
- Outputs are OUT1 - OUT4 corresponding to IN1 to IN4
- IN1 / OUT1 A1
- IN2 / OUT2 B1
- IN3 / OUT3 A2
- IN4 / OUT4 B2
*/
void prepMotors() {
if (RCactive) {
if (motorFwdPin > 0) {
// setup gpio pins used for motor (forward, optional reverse), and pwm frequency
LOG_INF("initialising MCPWM, using pins %d, %d", motorFwdPin, motorRevPin);
mcpwm_gpio_init(MCPWM_UNIT_0, MCPWM0A, motorFwdPin);
if (motorRevPin > 0) mcpwm_gpio_init(MCPWM_UNIT_0, MCPWM0B, motorRevPin);
mcpwm_config_t pwm_config;
pwm_config.frequency = pwmFreq; // pwm frequency
pwm_config.cmpr_a = 0; // duty cycle of PWMxA
pwm_config.cmpr_b = 0; // duty cycle of PWMxb
pwm_config.counter_mode = MCPWM_UP_COUNTER;
pwm_config.duty_mode = MCPWM_DUTY_MODE_0;
// Configure PWM0A & PWM0B with above settings
mcpwm_init(MCPWM_UNIT_0, MCPWM_TIMER_0, &pwm_config);
} else LOG_WRN("RC motor pins not defined");
}
}
static void motorForward(float duty_cycle) {
// motor moves in forward direction, with given duty cycle %
mcpwm_set_signal_low(MCPWM_UNIT_0, MCPWM_TIMER_0, MCPWM_OPR_B);
mcpwm_set_duty(MCPWM_UNIT_0, MCPWM_TIMER_0, MCPWM_OPR_A, duty_cycle);
// call this each time, if previously in low/high state
mcpwm_set_duty_type(MCPWM_UNIT_0, MCPWM_TIMER_0, MCPWM_OPR_A, MCPWM_DUTY_MODE_0);
}
static void motorReverse(float duty_cycle) {
// motor moves in backward direction, with given duty cycle %
mcpwm_set_signal_low(MCPWM_UNIT_0, MCPWM_TIMER_0, MCPWM_OPR_A);
mcpwm_set_duty(MCPWM_UNIT_0, MCPWM_TIMER_0, MCPWM_OPR_B, duty_cycle);
// call this each time, if previously in low/high state
mcpwm_set_duty_type(MCPWM_UNIT_0, MCPWM_TIMER_0, MCPWM_OPR_B, MCPWM_DUTY_MODE_0);
}
static void motorStop() {
// motor stop
mcpwm_set_signal_low(MCPWM_UNIT_0, MCPWM_TIMER_0, MCPWM_OPR_A);
mcpwm_set_signal_low(MCPWM_UNIT_0, MCPWM_TIMER_0, MCPWM_OPR_B);
}
void motorSpeed(int speedVal) {
// speedVal is signed duty cycle, convert to unsigned float
float speedValFloat = (float)(abs(speedVal));
if (speedVal == 0) motorStop();
else if (motorFwdPin > 0 && speedVal > 0.0) motorForward(speedValFloat);
else if (motorRevPin > 0 && speedVal < 0.0) motorReverse(speedValFloat);
}
/********************************* joystick *************************************/
// HW-504 Joystick
// Use X axis for steering, Y axis for motor, push button for lights toggle
// Requires 2 analog pins and 1 digital pin. Ideally supply voltage should be 3.1V
// X axis is longer edge of board
static const int sRate = 1; // samples per analog reading
static int xOffset = 0; // x zero offset
static int yOffset = 0; // y zero offset
static bool lightsChanged = false;
TaskHandle_t stickHandle = NULL;
static void IRAM_ATTR buttonISR() {
// joystick button pressed - toggle state
lightsChanged = !lightsChanged;
}
static void IRAM_ATTR stickISR() {
// interrupt at timer rate
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
vTaskNotifyGiveFromISR(stickHandle, &xHigherPriorityTaskWoken);
if (xHigherPriorityTaskWoken == pdTRUE) portYIELD_FROM_ISR();
}
void stickTimer(bool restartTimer) {
// timer 2 so dont conflict with mjpeg2sd or cam
// determines joystick polling rate
static hw_timer_t* stickTimer = NULL;
// stop timer if running
if (stickTimer) {
timerAlarmDisable(stickTimer);
timerDetachInterrupt(stickTimer);
timerEnd(stickTimer);
}
if (restartTimer) {
// (re)start timer 2 interrupt per required interval
stickTimer = timerBegin(2, 8000, true); // 0.1ms tick
int stickInterval = waitTime * 10; // in units of 0.1ms
timerAlarmWrite(stickTimer, stickInterval, true);
timerAlarmEnable(stickTimer);
timerAttachInterrupt(stickTimer, &stickISR, true);
}
}
static void stickTask (void *pvParameter) {
static bool lightsStatus = false;
while (true) {
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
// get joystick position, adjusted for zero offset
int xPos = smoothAnalog(stickXpin, sRate);
int steerAngle = (xPos > CENTER_ADC + xOffset) ? map(xPos, CENTER_ADC + xOffset, MAX_ADC, servoCenter, servoCenter + maxSteerAngle)
: map(xPos, 0, CENTER_ADC + xOffset, servoCenter - maxSteerAngle, servoCenter);
setSteering(steerAngle);
int yPos = smoothAnalog(stickYpin, sRate);
// reverse orientation of Y axis so up is forward
int motorCycle = (yPos > CENTER_ADC + yOffset) ? map(yPos, CENTER_ADC + yOffset, MAX_ADC, 0, 0 - maxDutyCycle)
: map(yPos, 0, CENTER_ADC + yOffset, maxDutyCycle, 0);
if (abs(motorCycle) < minDutyCycle) motorCycle = 0; // deadzone
motorSpeed(motorCycle);
if (lightsChanged != lightsStatus) setLights(lightsChanged);
lightsStatus = lightsChanged;
LOG_DBG("Xpos %d, Ypos %d, button %d", xPos, yPos, lightsStatus);
}
}
static void prepJoystick() {
if (stickUse) {
if (stickXpin > 0 && stickYpin > 0) {
// obtain offsets at joystick resting position
xOffset = smoothAnalog(stickXpin, 8) - CENTER_ADC;
yOffset = smoothAnalog(stickYpin, 8) - CENTER_ADC;
LOG_DBG("X-offset: %d, Y-offset: %d", xOffset, yOffset);
if (stickzPushPin > 0) {
pinMode(stickzPushPin, INPUT_PULLUP);
attachInterrupt(digitalPinToInterrupt(stickzPushPin), buttonISR, FALLING);
}
xTaskCreate(&stickTask, "stickTask", STICK_STACK_SIZE , NULL, 5, &stickHandle);
stickTimer(true);
LOG_INF("Joystick available");
} else LOG_WRN("Joystick pins not defined");
}
}
/**********************************************/
void prepPeripherals() {
// initial setup of each peripheral on client or extender
setupADC();
setupBatt();
prepUart();
setupLamp();
prepPIR();
prepTemperature();
prepServos();
prepMotors();
prepJoystick();
debugMemory("prepPeripherals");
}