thx, It looks like reality field is unable to connect to the m5stickC over com port.
While trying to debug I added a line to the code to print the serial buffer out on the screen on the m5StickC as follows.
void loop()
{
M5.update();
while (Serial.available()) {
//M5.Lcd.drawCentreString("Serial Available",80,34,2);
String buffer1 = Serial.readString();
parseSerial(buffer1);
String strPar = parsedValues[0];
M5.Lcd.drawCentreString(strPar,80,34,2);
When using the Serial Monitor from the Arduino Editor I can then type in any text and it will display on the screen.
How ever when trying to connect using Reality Field I get the error mentioned same applies when pressing Clear.
error ] ofSerial: writeBytes(): serial not inited
Blackmagic Camera Unpaired. Unplug and replug ESP32
Pressing Scan same error and it tries to scan forever.
And not message appears on the screen. So my understanding is that it never managed to talk over the com port.
Looking forward for some information to get this further 🙂