You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 17, 2025. It is now read-only.
I have my sensor data in Structure sent via 433Mhz freq. and received in Arduino.
The data is structured this way;
`
struct Data {
byte a;
float b;
float c;
float d;
float e;
float f;
float g;
float h;
float i;
} data;
`
And I have this print in my Arduino
`
Serial.flush();
Serial.print("Node");
Serial.print(data.a, HEX); Serial.print(",");
Serial.print(data.b); Serial.print(",");
Serial.print(data.c); Serial.print(",");
Serial.print(data.d); Serial.print(",");
Serial.print(data.e); Serial.print(",");
Serial.print(data.f); Serial.print(",");
Serial.print(data.g); Serial.print(",");
Serial.print(data.h); Serial.print(",");
Serial.print(data.i); Serial.println("");
`
This is a sample output on the serial monitor
`
NodeDD,5.86,-20.28,-118.82,573.00,-21.43,-12280.19,109.37,1.00
NodeBB,10.43,-6.76,-70.46,1008.00,-7.09,-7145.77,202.15,1.00
NodeDD,5.76,-20.25,-116.62,551.00,-21.37,-11775.27,101.07,1.00
NodeBB,10.43,-6.75,-70.41,1008.00,-7.10,-7159.19,202.15,1.00
NodeDD,5.52,-20.09,-110.91,537.00,-21.27,-11424.43,102.05,1.00
NodeBB,10.41,-6.77,-70.49,1008.00,-7.13,-7186.04,201.66,1.00
NodeDD,5.79,-20.23,-117.15,566.00,-21.40,-12110.91,107.42,1.00
NodeBB,10.41,-6.80,-70.84,1008.00,-7.10,-7152.73,201.66,1.00
`
And have this code flashed in my esp-01 (this is the code inside the loop).
`
while(Serial.available()){
}
if (Firebase.failed()) {
return;
}
`
The text was updated successfully, but these errors were encountered: