12-09-2022 12:12 AM
HI,
I have a BME688 x8 kit, I installed the library, then "bme68x_demo_sample" code in my ESP32. And I recorded data. After that I uploaded my data to the BME-AI Studi, then I create An Algorithm, and everything worked well. now I want to run the Machine Learning model life on my MCU, so I clicked on " Export as BSEC config file". then I got the config file.
1. The question here is when I copy this file and paste it into the SD card, should I remove the old config file that we used to record data?
2. Should I change the code that I already installed on my ESP32 "bme68x_demo_sample"?
3. Could I open debugging terminal of Arduino to see the result of the classifier?
12-12-2022 02:37 AM
Hi OSMAN,
1. You don't need to remove *.bmeconfig file when you copy *.config file to SD card;
2,3: "bme68x_demo_sample" is the software code implementation of "bme68x_demo_sample.ino.bin" which could record data and communicate with mobile apps. You can see the test results in two ways:
(1). View it on the mobile app. Do not change the "bme68x_demo_sample" running on ESP32. Copy the configuration file to the SD card. Connect the mobile app to the BME688 dev kit;
(2). View it on Arduino IDE, you need to run it on ESP32 https://github.com/boschsensortec/Bosch-BSEC2-Library/blob/master/examples/generic_examples/basic_co... example code, replace your configuration file to the configuration in the example code, and view the test results in the Arduino print information.