06-02-2022 08:19 PM
Hi, I am trying to find an example of how to use an algorithm generated in Bosch AI Studio to sense gases using the STM32 board and BME688 breakout board. I've tried doing it on my Raspberry Pi with picockpit and it worked, but I want something, that consumes less power. I'll be thankful for an example code or instruction on how to apply the algorithm to STM32.
Have a great day
Antek
06-03-2022 07:44 PM
Hi,
There is migration introduction guide in BSEC 2 library.
\bsec_2-0-6-1_generic_release_04302021\BSEC_2.0.6.1_Generic_Release_04302021\integration_guide
https://www.bosch-sensortec.com/software-tools/software/bme688-software/
In terms of power consumption, we need to use high performance mode for AI feature, but if you don't use AI feature, then you can use low power mode as well.
Thank you.
06-03-2022 08:17 PM
06-03-2022 10:57 PM
Technically, yes.
Originally, you can gather data for AI studio using our BME688 dev kit.
https://www.bosch-sensortec.com/software-tools/software/bme688-software/
And also, we open our BME688 dev kit code as below.
https://github.com/BoschSensortec/Bosch-BSEC2-Library/tree/master/examples/bme68x_demo_sample
If you can migrate our project sample and make same data format for AI studio, you can use the data for AI studio.
Then, you can create your own config file using AI studio and apply it to other MCU.
Thanks,
06-04-2022 12:52 PM
Sorry, I wasn't clear. I want to create an algorithm to sense two gasses using dev kit, but then I want t use a breakout board with esp to collect data once in 15 minutes and then send it to Raspberry Pi, which based on the algorithm, could tell if esp is in the first gas or in second. And my question is how to run (not generate) an algorithm (generated on dev kit) on Raspberry Pi with data collected from esp with a breakout board?