02-19-2024 11:42 PM
Hi,
I'm using Raspberry Pi 5 to contact a BMP 390 sensor module. The i2ctools shows the address (0x77) but I cant manage them getting the temperature and pressure data. Would you please provide some examples how to initialize and read the sensor?
Thanks a lot
Jörg
02-20-2024 12:10 AM
Hi jbruenn,
There is BMP3 github and example as below.
https://github.com/boschsensortec/BMP3-Sensor-API
What you need to do is put your i2c write read functions in common.c.
/BMP3-Sensor-API/tree/master/examples/common
There are example codes which supports temp / pressure data
Thank you.