HI, Is there any example integration with BME680 and BSEC library in ESP32-S3 ULP co-processor? Requirement is for battery powered system to read Temp, Humidity and IAQ values and report to user. Aa requriement is a battery powered system, as per BSEC library host MCU esp32-S3 needs to wake up every 5 minutes(300 sec) in ULP mode and read BME680 sensor and further process the samples using BSEC library to derive IAQ values. waking for esp32-s3 every 5 minutes consumes good amount of power whichis not suitable for battery powered system, as esp32 main core consumes around 25 ma when core is running. wanted to check the feasibilty of : 1. Running BME680 and BSEC with ULP-Coprocessor on ESP32-S2 where ULP co-processor on ESP32-S3 csonumes only 10 uA 2. Can we stack the samples from BME680 and later provide to BSEC library for IAQ calculations, in the sense ULP coprocessor will wake up once in every 300 seconds and stack the samples for 12 iterations (will buffer12 set of samples) after 12 sample collection by ULP coprocessor on ESP32-S3, main core wakes up every 12*300seconds - 36000 seconds - 60 minutes and feeds 12 set of samples to BSEC library to get IAQ values from library? Thanks
... View more