How can I clean and print the sensor data to the monitor before loading it onto the model
I finally was able to to integrate the model into my ESP32 firmware
How can I clean and print the sensor data to the monitor before loading it onto the model
@Middleware & OS
@Helper
Solution:Jump to solution
Add a function to print the sensor data before using it for prediction:
```
void printSensorData(float *input_data) {
Serial.print("Sensor Data: ");...
1 Reply
Solution
Add a function to print the sensor data before using it for prediction:
Call this function in your
loop()
function before calling predict()
: