- Edited
Hi Josh,
We have a Rotary Encoder Module (Teensy 3.5 or 3.6), which communicates with the State Machine through Serial1.
We need to use the RE Serial2 port to send bytes directly to a Valve Driver Module.
We have been trying the following simplified code loaded into the RE, but the Valve Driver Module receives no communication.
Valves do open if we connect the Valve Driver Module to the State Machine and send messages from there.
We have tried different RE modules, but none worked.
Do you have any insight into what might be happening and whether we should be able to set this communication up?
Thanks a lot, as always!
#include "ArCOM.h"
#include "Arduino.h"
#include <SPI.h>
ArCOM OutputStreamCOM(Serial2);
void setup() {
Serial2.begin(1312500);
}
void loop() {
for ( int i = 0; i <= 7; i++) {
int byteCurrentZone = 1 << i;
OutputStreamCOM.writeByte("B");
OutputStreamCOM.writeByte(byteCurrentZone);
delay(500);
}
}