Hello!
I am using two optical encoders attached to stepper motors in order to determine the orientation of a rotating object. One photon is being used to receive the encoder data and transmit it to the second photon. The second photon will then process both encoder’s data.
I would like help sending over both sets of encoder step data (integer values from 0 - 500) using the Tx and Rx pins. So far, the receiver photon only receives the encoder values 0 - 255, resets back to 0, and starts again.
My first question is how to send integer step data that is higher than 255. My second question is how to send that data for both encoders using the Serial1 functionality.
Transmitter:
#include "RotaryEncoder.h"
#include "math.h"
SYSTEM_MODE(MANUAL);
#define ENC2_INPUT_A (A0)
#define ENC2_INPUT_B (A1)
#define ENC2_INPUT_I (A2)
#define ENC1_INPUT_A (D1)
#define ENC1_INPUT_B (D5)
#define ENC1_INPUT_I (D6)
#define trigger (D7)
#define INDEX_PULSE_TIME_US (20)
volatile int positionEnc1 = 0, positionEnc2 = 0;
RotaryEncoder rotaryEncoder1(ENC1_INPUT_A, ENC1_INPUT_B);
RotaryEncoder rotaryEncoder2(ENC2_INPUT_A, ENC2_INPUT_B);
void encoder1PhaseISR(void) {
rotaryEncoder1.process();
}
void encoder2PhaseISR(void) {
rotaryEncoder2.process();
}
void encoder1IndexISR(void) {
volatile unsigned long count = micros();
while ((count - micros()) < INDEX_PULSE_TIME_US) {
if (pinReadFast(ENC1_INPUT_I) == LOW) {
return;
}
}
// index pulse latched, reset position
positionEnc1 = 0;
rotaryEncoder1.resetPosition();
}
void encoder2IndexISR(void) {
volatile unsigned long count = micros();
while ((count - micros()) < INDEX_PULSE_TIME_US) {
if (pinReadFast(ENC2_INPUT_I) == LOW) {
return;
}
}
// index pulse latched, reset position
positionEnc2 = 0;
rotaryEncoder2.resetPosition();
}
void setup() {
// encoder1 config
pinMode(ENC1_INPUT_A, INPUT_PULLUP);
pinMode(ENC1_INPUT_B, INPUT_PULLUP);
pinMode(ENC1_INPUT_I, INPUT_PULLUP);
// encoder 2 config
pinMode(ENC2_INPUT_A, INPUT_PULLUP);
pinMode(ENC2_INPUT_B, INPUT_PULLUP);
pinMode(ENC2_INPUT_I, INPUT_PULLUP);
attachInterrupt(ENC1_INPUT_A, encoder1PhaseISR, CHANGE, 0);
attachInterrupt(ENC1_INPUT_B, encoder1PhaseISR, CHANGE, 0);
attachInterrupt(ENC1_INPUT_I, encoder1IndexISR, RISING);
attachInterrupt(ENC2_INPUT_A, encoder2PhaseISR, CHANGE, 0);
attachInterrupt(ENC2_INPUT_B, encoder2PhaseISR, CHANGE, 0);
attachInterrupt(ENC2_INPUT_I, encoder2IndexISR, RISING);
pinMode(trigger, OUTPUT);
Serial.begin(9600);
Serial1.begin(9600);
Particle.connect();
}
void loop() {
static float value;
static int i = 0;
// PRIMARY
positionEnc1 = rotaryEncoder2.read();
// For Putty
Serial.print("Encoder 1: position cycles: ");
Serial.print(positionEnc1);
Serial.print(" deg: ");
Serial.println((float)positionEnc1/(float)500 * 360.0);
// For Data Transfer
Serial1.write(positionEnc1);
// SECONDARY
positionEnc2 = rotaryEncoder2.read();
// For Putty
Serial.print("Encoder 2: position cycles: ");
Serial.print(positionEnc2);
Serial.print(" deg: ");
Serial.println((float)positionEnc2/(float)500 * 360.0);
// For Data Transfer
Serial1.write(positionEnc2);
if (i++ % 1000 == 0) {
Particle.process();
}
Receiver:
void setup() {
Serial.begin(9600);
Serial1.begin(9600);
Particle.connect();
}
void loop() {
int value;
static int i = 0;
while(Serial1.available()) {
value = Serial1.read();
Serial.println(value);
if (i++ % 1000 == 0) {
Particle.process();
}
}
}
Thanks in advance for any help you can provide!