Wish List 0

Max30100 Pulse Oximeter Heart Rate Sensor Module

Rs. 91.00 Rs. 105.00

-Heart Rate click on contains Maxim’s MAX30100 integrated pulse oximetry and a coronary heart-charge sensor.
-It’s an optical sensor that derives its readings from emitting two wavelengths of light from  LEDs – a pink and an infrared one – then measuring the absorbance of pulsing blood through a photodetector.
-This unique LED color aggregate is optimized for analyzing the statistics via the tip of 1’s finger.

-The signal is processed via a low-noise analog signal processing unit and communicated to the target MCU thru the mikroBUS I2C interface.
-Developers of quit-consumer programs have to note that the readings can be negatively impacted by means of extra movement and adjustments in temperature.
-Also, too much strain can constrict capillary blood float and therefore lessen the reliability of the statistics.
-A programmable INT pin is also to be had.
-The operates at the 3.3V strength deliver.

Features:
-Optical sensor: IR and pink LED mixed with a photodetector
-Measures absorbance of pulsing blood
-I2C interface plus INT pin
-3.3V power supply entire pulse oximeter and coronary heart rate sensor answer, simplifies design, included LEDs, photo sensor, and excessive-performance analog front
-Ultra low power operation will increase battery lifestyles for wearable devices
-Advanced capability improves measurement overall performance, excessive SNR affords strong motion artifact resilience integrated ambient, mild cancellation high sample charge functionality fast  information output capability
-It is an integrated pulse oximetry and heart rate screen sensor solution."

SPECIFICATIONS:
Working voltage   1.8 ~ 5.5V
Shutdown Current  0.7µA
Color             Green

OVERVIEW:

-Optical sensor: IR and red LED combined with a photodetector

-Measures absorbance of pulsing blood

-I2C interface plus INT pin

-3.3V power supply complete pulse oximeter and heart rate sensor solution, simplifies design, integrated LEDs, photo sensor, and

-high-performance analog front

-Ultra low power operation increases battery life for wearable devices


PACKAGE INCLUDES:

1 PCS x Max30100 Pulse Oximeter Heart Rate Sensor Module I2C


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.electroniclinic.com/max30100-pulse-oximeter-arduino-code-circuit-and-programming/

#include "MAX30100_PulseOximeter.h"

 

#define REPORTING_PERIOD_MS     1000

 

PulseOximeter pox;

uint32_t tsLastReport = 0;

 

void onBeatDetected()

{

    Serial.println("Beat!");

}

 

void setup()

{

    Serial.begin(115200);

    Serial.print("Initializing pulse oximeter..");

 

    // Initialize the PulseOximeter instance

    // Failures are generally due to an improper I2C wiring, missing power supply

    // or wrong target chip

    if (!pox.begin()) {

        Serial.println("FAILED");

        for(;;);

    } else {

        Serial.println("SUCCESS");

    }

     pox.setIRLedCurrent(MAX30100_LED_CURR_7_6MA);

 

    // Register a callback for the beat detection

    pox.setOnBeatDetectedCallback(onBeatDetected);

}

 

void loop()

{

    // Make sure to call update as fast as possible

    pox.update();

    if (millis() - tsLastReport > REPORTING_PERIOD_MS) {

        Serial.print("Heart rate:");

        Serial.print(pox.getHeartRate());

        Serial.print("bpm / SpO2:");

        Serial.print(pox.getSpO2());

        Serial.println("%");

 

        tsLastReport = millis();

    }

}


15 days

Write a review

Please login or register to review