working with Pulse Oxymeter Sensor Pi Pico #11204
Unanswered
IamMugiChan
asked this question in
RP2040 / Pico
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Device Used: mh-et live max30102
Library Used: https://pypi.org/project/micropython-max30102/
Reading Sample No Finger Input:
`
130 , 114
129 , 117
128 , 114
`
Reading Sample With Finger Input
16338 , 12171
15992 , 12597
16093 , 12496
15879 , 12468
16195 , 12467
Now we can say that the device is reading ...
module configuration:
sensor.set_sample_rate(400)
sensor.set_fifo_average(8)
sensor.set_active_leds_amplitude(MAX30105_PULSE_AMP_MEDIUM)
given this data from function
red_reading = sensor.pop_red_from_storage()
ir_reading = sensor.pop_ir_from_storage()
how can we compute the SpO2 and the Heart Rate? any ideas or sample?
Beta Was this translation helpful? Give feedback.
All reactions