Quadrature encoder reading working
Read encoders with interrupt routines
This commit is contained in:
parent
0c600138c5
commit
c4d0df4730
117
Main/Main.ino
117
Main/Main.ino
|
@ -2,9 +2,12 @@
|
||||||
#include "GY_85.h"
|
#include "GY_85.h"
|
||||||
#include <Wire.h>
|
#include <Wire.h>
|
||||||
|
|
||||||
|
//System variables
|
||||||
|
unsigned long now = micros();
|
||||||
|
|
||||||
|
|
||||||
|
//IMU variables
|
||||||
GY_85 GY85; //create the object
|
GY_85 GY85; //create the object
|
||||||
|
|
||||||
int ax_, ay_, az_;
|
int ax_, ay_, az_;
|
||||||
int ax, ay, az;
|
int ax, ay, az;
|
||||||
int cx, cy, cz;
|
int cx, cy, cz;
|
||||||
|
@ -12,12 +15,76 @@ float gx, gy, gz, gt;
|
||||||
float acc_pitch;
|
float acc_pitch;
|
||||||
signed int speed_setp;
|
signed int speed_setp;
|
||||||
|
|
||||||
|
//Random
|
||||||
int i, modifier;
|
int i, modifier;
|
||||||
|
|
||||||
int m1_in1 = 33;
|
//Motor Control variables
|
||||||
int m1_in2 = 25;
|
const byte m1_in1 = 18;
|
||||||
int m2_in1 = 13;
|
const byte m1_in2 = 19;
|
||||||
int m2_in2 = 14;
|
//int m2_in1 = 16;
|
||||||
|
//int m2_in2 = 17;
|
||||||
|
|
||||||
|
//Encoders variables
|
||||||
|
long int m1Raw, m1RawLast;
|
||||||
|
const byte pin_m1_A = 34;
|
||||||
|
const byte pin_m1_B = 35;
|
||||||
|
volatile bool A_state;
|
||||||
|
volatile bool B_state;
|
||||||
|
|
||||||
|
//Interrupt routines
|
||||||
|
// CW = INCREASE
|
||||||
|
// CCW = DECREASE
|
||||||
|
|
||||||
|
void IRAM_ATTR m1_A_changed() {
|
||||||
|
A_state = digitalRead(pin_m1_A);
|
||||||
|
B_state = digitalRead(pin_m1_B);
|
||||||
|
|
||||||
|
//Rising
|
||||||
|
if (A_state == HIGH) {
|
||||||
|
if (B_state == HIGH) {
|
||||||
|
m1Raw = m1Raw - 1;
|
||||||
|
}
|
||||||
|
else if (B_state == LOW) {
|
||||||
|
m1Raw = m1Raw + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//Falling
|
||||||
|
else if (A_state == LOW) {
|
||||||
|
if (B_state == HIGH) {
|
||||||
|
m1Raw = m1Raw + 1;
|
||||||
|
}
|
||||||
|
else if (B_state == LOW) {
|
||||||
|
m1Raw = m1Raw - 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void IRAM_ATTR m1_B_changed() {
|
||||||
|
A_state = digitalRead(pin_m1_A);
|
||||||
|
B_state = digitalRead(pin_m1_B);
|
||||||
|
|
||||||
|
//Rising
|
||||||
|
if (B_state == HIGH) {
|
||||||
|
if (A_state == HIGH) {
|
||||||
|
m1Raw = m1Raw + 1;
|
||||||
|
}
|
||||||
|
else if (A_state == LOW) {
|
||||||
|
m1Raw = m1Raw - 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//Falling
|
||||||
|
else if (B_state == LOW) {
|
||||||
|
if (A_state == HIGH) {
|
||||||
|
m1Raw = m1Raw - 1;
|
||||||
|
}
|
||||||
|
else if (A_state == LOW) {
|
||||||
|
m1Raw = m1Raw + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void setup() {
|
void setup() {
|
||||||
//Initialize serial
|
//Initialize serial
|
||||||
|
@ -33,25 +100,45 @@ void setup() {
|
||||||
GY85.init();
|
GY85.init();
|
||||||
delay(10);
|
delay(10);
|
||||||
|
|
||||||
|
//Initialize Interrupts
|
||||||
|
pinMode(pin_m1_A, INPUT_PULLUP);
|
||||||
|
pinMode(pin_m1_B, INPUT_PULLUP);
|
||||||
|
attachInterrupt(digitalPinToInterrupt(pin_m1_A), m1_A_changed, CHANGE);
|
||||||
|
attachInterrupt(digitalPinToInterrupt(pin_m1_B), m1_B_changed, CHANGE);
|
||||||
|
|
||||||
|
//Initialize Encoders
|
||||||
|
m1Raw = 0;
|
||||||
|
m1RawLast = 100;
|
||||||
|
|
||||||
// Initialize PWM channels
|
// Initialize PWM channels
|
||||||
// channels 0-15, resolution 1-16 bits, freq limits depend on resolution
|
// channels 0-15, resolution 1-16 bits, freq limits depend on resolution
|
||||||
// ledcSetup(uint8_t channel, uint32_t freq, uint8_t resolution_bits);
|
// ledcSetup(uint8_t channel, uint32_t freq, uint8_t resolution_bits);
|
||||||
|
|
||||||
ledcAttachPin(m1_in1, 1);
|
ledcAttachPin(m1_in1, 1);
|
||||||
ledcAttachPin(m1_in2, 2);
|
ledcAttachPin(m1_in2, 2);
|
||||||
ledcAttachPin(m2_in1, 3);
|
// ledcAttachPin(m2_in1, 3);
|
||||||
ledcAttachPin(m2_in2, 4);
|
// ledcAttachPin(m2_in2, 4);
|
||||||
|
|
||||||
ledcSetup(1, 12000, 8); // 12 kHz PWM, 8-bit resolution
|
ledcSetup(1, 12000, 12); // 12 kHz PWM, 8-bit resolution
|
||||||
ledcSetup(2, 12000, 8);
|
ledcSetup(2, 12000, 12);
|
||||||
ledcSetup(3, 12000, 8);
|
// ledcSetup(3, 12000, 8);
|
||||||
ledcSetup(4, 12000, 8);
|
// ledcSetup(4, 12000, 8);
|
||||||
|
|
||||||
|
//Random
|
||||||
i = 0;
|
i = 0;
|
||||||
modifier = 2;
|
modifier = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
|
//Update system variables
|
||||||
|
now = micros();
|
||||||
|
|
||||||
|
//Only print encoder value if value changed since last print
|
||||||
|
if (m1Raw != m1RawLast) {
|
||||||
|
Serial.println(m1Raw);
|
||||||
|
m1RawLast = m1Raw;
|
||||||
|
}
|
||||||
|
|
||||||
//Sense
|
//Sense
|
||||||
readIMU();
|
readIMU();
|
||||||
|
|
||||||
|
@ -62,14 +149,6 @@ void loop() {
|
||||||
//Act
|
//Act
|
||||||
motorControl();
|
motorControl();
|
||||||
|
|
||||||
i=i+modifier;
|
|
||||||
|
|
||||||
if (i>=4096){
|
|
||||||
modifier = -2;
|
|
||||||
}
|
|
||||||
else if (i<=0){
|
|
||||||
modifier = 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Delay
|
//Delay
|
||||||
delay(5); // only read every 0,5 seconds, 10ms for 100Hz, 20ms for 50Hz
|
delay(5); // only read every 0,5 seconds, 10ms for 100Hz, 20ms for 50Hz
|
||||||
|
|
|
@ -1,21 +1,21 @@
|
||||||
void motorControl() {
|
void motorControl() {
|
||||||
// //Motor 1
|
//Motor 1
|
||||||
// speed_setp = round(map(acc_pitch, -90.0, 90.0, -255, 255));
|
speed_setp = round (map(acc_pitch, -90.0, 90.0, -4096, 4096));
|
||||||
// if (speed_setp > 0) {
|
if (speed_setp > 0) {
|
||||||
// ledcWrite(1, speed_setp);
|
ledcWrite(1, speed_setp);
|
||||||
// ledcWrite(2, 0);
|
ledcWrite(2, 0);
|
||||||
// }
|
}
|
||||||
// else if (speed_setp < 0) {
|
else if (speed_setp < 0) {
|
||||||
// ledcWrite(1, 0);
|
ledcWrite(1, 0);
|
||||||
// ledcWrite(2, -1*speed_setp);
|
ledcWrite(2, -1 * speed_setp);
|
||||||
// }
|
}
|
||||||
// Serial.print (acc_pitch);
|
// Serial.print (acc_pitch);
|
||||||
// Serial.print ( "," );
|
// Serial.print ( "," );
|
||||||
// Serial.println(speed_setp);
|
// Serial.println(speed_setp);
|
||||||
|
|
||||||
|
//
|
||||||
ledcWrite(1, 0);
|
// ledcWrite(1, 0);
|
||||||
ledcWrite(2, 0);
|
// ledcWrite(2, 0);
|
||||||
|
|
||||||
|
|
||||||
//Motor 2
|
//Motor 2
|
||||||
|
|
Loading…
Reference in New Issue