2025-08-20 6:49 PM
Hello,
I’m using the STM32L475VGT6 board and need drivers for the MAX30102/MAX30100 and Protocentral MAX86150 sensors. I couldn’t find official or compatible drivers for these sensors on this MCU.
If anyone has links to drivers, example code, or advice on integration with STM32L475VGT6 (using STM32CubeIDE or HAL libraries), please share.
Thanks in advance!
2025-08-25 6:25 AM - edited 2025-08-25 6:26 AM
Hello,
This has no relation with STM32 itself.
You need to search for a driver in the internet. You may find some implementations done by others.
Example: for MAX30102: https://github.com/eepj/stm32-max30102
For MAX86150 : https://github.com/Protocentral/protocentral_max86150_ecg_ppg/tree/master
If you find a driver but not on STM32, you need to adapt it to your MCU.
Otherwise, you need to read the reference manual of the device and implement your own driver.
Hope this helps. Thank you.