Newer
Older
Copyright 2014 James LeRoy getSurreal
https://github.com/getSurreal/XV_Lidar_Controller
http://www.getsurreal.com/arduino/xv_lidar_controller
See README for additional information
*/
#include <TimerThree.h> // used for ultrasonic PWM motor control
#include <PID.h>
double rpm_setpoint; // desired RPM (double to be compatible with PID library)
double pwm_max;
double pwm_min;
double Kp;
double Ki;
double Kd;
getSurreal
committed
boolean motor_enable;
boolean relay;
getSurreal
committed
const byte EEPROM_ID = 0x01; // used to validate EEPROM initialized
boolean debug_motor_rpm = false;
PID rpmPID(&motor_rpm, &pwm_val, &xv_config.rpm_setpoint, xv_config.Kp, xv_config.Ki, xv_config.Kd, DIRECT);
int inByte = 0; // incoming serial byte
unsigned char data_status = 0;
unsigned char data_4deg_index = 0;
unsigned char data_loop_index = 0;
unsigned char motor_rph_high_byte = 0;
unsigned char motor_rph_low_byte = 0;
int motor_rph = 0;
EEPROM_readAnything(0, xv_config);
if( xv_config.id != EEPROM_ID) { // verify EEPROM values have been initialized
initEEPROM();
}
pinMode(xv_config.motor_pwm_pin, OUTPUT);
Serial.begin(115200); // USB serial
Serial1.begin(115200); // XV LDS data
Timer3.initialize(30); // set PWM frequency to 32.768kHz
rpmPID.SetOutputLimits(xv_config.pwm_min,xv_config.pwm_max);
rpmPID.SetSampleTime(20);
rpmPID.SetTunings(xv_config.Kp, xv_config.Ki, xv_config.Kd);
rpmPID.SetMode(AUTOMATIC);
sCmd.readSerial(); // check for incoming serial commands
// read byte from LIDAR and relay to USB
if (Serial1.available() > 0) {
inByte = Serial1.read(); // get incoming byte:
getSurreal
committed
if (xv_config.relay) {
Serial.print(inByte, BYTE); // relay
getSurreal
committed
if (xv_config.motor_enable) {
if (pwm_val != pwm_last) {
Timer3.pwm(xv_config.motor_pwm_pin, pwm_val); // replacement for analogWrite()
pwm_last = pwm_val;
}
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
}
void decodeData(unsigned char inByte) {
switch (data_status) {
case 0: // no header
if (inByte == 0xFA) {
data_status = 1;
data_loop_index = 1;
}
break;
case 1: // find 2nd FA
if (data_loop_index == 22) {
if (inByte == 0xFA) {
data_status = 2;
data_loop_index = 1;
}
else { // if not FA search again
data_status = 0;
}
}
else {
data_loop_index++;
}
break;
case 2: // read data out
if (data_loop_index == 22) {
if (inByte == 0xFA) {
data_loop_index = 1;
}
else { // if not FA search again
data_status = 0;
}
}
else {
readData(inByte);
data_loop_index++;
}
break;
}
}
void readData(unsigned char inByte) {
switch (data_loop_index) {
case 1: // 4 degree index
data_4deg_index = inByte - 0xA0;
// Serial.print(data_4deg_index, HEX);
// Serial.print(": ");
break;
case 2: // speed in RPH low byte
motor_rph_low_byte = inByte;
break;
case 3: // speed in RPH high byte
motor_rph_high_byte = inByte;
motor_rph = (motor_rph_high_byte << 8) | motor_rph_low_byte;
motor_rpm = float( (motor_rph_high_byte << 8) | motor_rph_low_byte ) / 64.0;
// Serial.print("Motor RPH HEX: ");
// Serial.print(motor_rph_low_byte, HEX);
// Serial.println(motor_rph_high_byte, HEX);
Serial.print("RPM: ");
Serial.print(motor_rpm);
Serial.print(" PWM: ");
Serial.println(pwm_val);
}
break;
default: // others do checksum
break;
}
}
getSurreal
committed
xv_config.id = 0x01;
xv_config.motor_pwm_pin = 9; // pin connected N-Channel Mosfet
xv_config.rpm_setpoint = 300; // desired RPM
xv_config.pwm_max = 1023;
xv_config.pwm_min = 600;
xv_config.Kp = 1.0;
xv_config.Ki = 0.5;
xv_config.Kd = 0.00;
getSurreal
committed
xv_config.motor_enable = true;
xv_config.relay = true;
sCmd.addCommand("help", help);
sCmd.addCommand("Help", help);
sCmd.addCommand("GetConfig", getConfig);
sCmd.addCommand("SaveConfig", saveConfig);
sCmd.addCommand("ResetConfig",initEEPROM);
sCmd.addCommand("SetRPM", setRPM);
sCmd.addCommand("SetKp", setKp);
sCmd.addCommand("SetKi", setKi);
sCmd.addCommand("SetKd", setKd);
sCmd.addCommand("ShowRPM", showRPM);
sCmd.addCommand("HideRPM", hideRPM);
sCmd.addCommand("MotorOff", motorOff);
sCmd.addCommand("MotorOn", motorOn);
sCmd.addCommand("RelayOff", relayOff);
sCmd.addCommand("RelayOn", relayOn);
// XV Commands
sCmd.addCommand("GetPrompt", getPrompt);
sCmd.addCommand("GetVersion", getVersion);
void showRPM() {
debug_motor_rpm = true;
Serial.println("Showing RPM data");
}
void hideRPM() {
debug_motor_rpm = false;
Serial.println("Hiding RPM data");
}
getSurreal
committed
xv_config.motor_enable = false;
Serial.println("Motor off");
}
void motorOn() {
getSurreal
committed
xv_config.motor_enable = true;
Timer3.pwm(xv_config.motor_pwm_pin, xv_config.pwm_min);
Serial.println("Motor on");
}
getSurreal
committed
xv_config.relay = false;
Serial.println("Lidar data disabled");
}
getSurreal
committed
xv_config.relay = true;
Serial.println("Lidar data enabled");
}
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
char *arg;
boolean syntax_error = false;
arg = sCmd.next();
if (arg != NULL) {
sVal = atof(arg); // Converts a char string to an integer
}
else {
syntax_error = true;
}
arg = sCmd.next();
if (arg != NULL) {
syntax_error = true;
}
if (syntax_error) {
Serial.println("Incorrect syntax. Example: SetRPM 300");
}
else {
Serial.print("Setting RPM to: ");
Serial.println(sVal);
Serial.println(xv_config.rpm_setpoint);
xv_config.rpm_setpoint = sVal;
Serial.println(xv_config.rpm_setpoint);
}
}
void setKp() {
char *arg;
boolean syntax_error = false;
arg = sCmd.next();
if (arg != NULL) {
sVal = atof(arg); // Converts a char string to an integer
}
else {
syntax_error = true;
}
arg = sCmd.next();
if (arg != NULL) {
syntax_error = true;
}
if (syntax_error) {
Serial.println("Incorrect syntax. Example: SetKp 1.0");
}
else {
Serial.print("Setting Kp to: ");
Serial.println(sVal);
xv_config.Kp = sVal;
rpmPID.SetTunings(xv_config.Kp, xv_config.Ki, xv_config.Kd);
void setKi() {
char *arg;
boolean syntax_error = false;
arg = sCmd.next();
if (arg != NULL) {
sVal = atof(arg); // Converts a char string to an integer
}
else {
syntax_error = true;
}
arg = sCmd.next();
if (arg != NULL) {
syntax_error = true;
}
if (syntax_error) {
Serial.println("Incorrect syntax. Example: SetKp 1.0");
}
else {
Serial.print("Setting Ki to: ");
Serial.println(sVal);
xv_config.Ki = sVal;
rpmPID.SetTunings(xv_config.Kp, xv_config.Ki, xv_config.Kd);
}
}
void setKd() {
char *arg;
boolean syntax_error = false;
arg = sCmd.next();
if (arg != NULL) {
sVal = atof(arg); // Converts a char string to an integer
}
else {
syntax_error = true;
}
arg = sCmd.next();
if (arg != NULL) {
syntax_error = true;
}
if (syntax_error) {
Serial.println("Incorrect syntax. Example: SetKp 1.0");
}
else {
Serial.print("Setting Kd to: ");
Serial.println(sVal);
xv_config.Kd = sVal;
rpmPID.SetTunings(xv_config.Kp, xv_config.Ki, xv_config.Kd);
}
}
void getPrompt() {
Serial1.print(0x1B, BYTE);
}
void getVersion() {
Serial1.print("GetVersion");
}
void help() {
Serial.println("List of available commands (case sensitive)");
Serial.println(" GetConfig");
Serial.println(" SaveConfig");
Serial.println(" ResetConfig");
Serial.println(" SetRPM");
Serial.println(" SetKp");
Serial.println(" SetKi");
Serial.println(" SetKp");
Serial.println(" ShowRPM");
Serial.println(" HideRPM");
Serial.println(" MotorOff");
Serial.println(" MotorOn");
Serial.println(" RelayOff");
Serial.println(" RelayOn");
}
void getConfig() {
Serial.print("PWM pin: ");
Serial.println(xv_config.motor_pwm_pin);
Serial.print("Target RPM: ");
Serial.println(xv_config.rpm_setpoint);
Serial.print("Max PWM: ");
Serial.println(xv_config.pwm_max);
Serial.print("Min PWM: ");
Serial.println(xv_config.pwm_min);
Serial.print("PID Kp: ");
Serial.println(xv_config.Kp);
Serial.print("PID Ki: ");
Serial.println(xv_config.Ki);
Serial.print("PID Kd: ");
Serial.println(xv_config.Kd);
getSurreal
committed
Serial.print("Motor Enable: ");
Serial.println(xv_config.motor_enable);
getSurreal
committed
Serial.println(xv_config.relay);
void saveConfig() {
EEPROM_writeAnything(0, xv_config);