# bmp388 **Repository Path**: greenwall/bmp388 ## Basic Information - **Project Name**: bmp388 - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-10 - **Last Updated**: 2025-08-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # bmp388 #### 介绍 ##### BMP388的官方链接: https://www.bosch-sensortec.com/products/environmental-sensors/pressure-sensors/bmp388/ ##### 代码的开源路径: https://github.com/boschsensortec/BMP3_SensorAPI 主要是参考examples里面的例子。 主要修改是commom.c里面的内容。很多不用的可以注释掉。 在main函数里面先调用Bmp388_Init,然后在while循环里面使用Get_Bmp388_Data即可。 需要留意的是,采集间隔的时长。 ##### 使用 ``` int main(void) { Bmp388_Init(); while (1) { HAL_Delay(230); Get_Bmp388_Data(); } } ```