Hi ilcnet,
Calibration status is not automatically saved. Usually our example code includes the code for saving state and loading state. https://github.com/BoschSensortec/Bosch-BSEC2-Library/blob/master/examples/generic_examples/basic_config_state/basic_config_state.ino
/** * @brief : This function retrieves the existing state * @param : Bsec2 class object */ bool loadState(Bsec2 bsec);
/** * @brief : This function writes the state into EEPROM * @param : Bsec2 class object */ bool saveState(Bsec2 bsec);
... View more