Max30100 Pulse Oximeter Heart Rate Sensor Module
Rs. 83.00 Rs. 96.00
- Brand: https://www.maximintegrated.com/en/products/sensors/MAX30100.htm
- Product Code: SEN-BIOMEDICAL
- SKU -
- Availability: In Stock
- Price in reward points: 1
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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
https://www.maximintegrated.com/en/products/sensors/MAX30100.html
//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