Menu
Your Cart

Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards

Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
Mini Heartbeat Rate Sensor MAX30100 Heart Sensor Module Sensor for Low Power Oxygen Pulse I2C Interface for Arduino - products that work with official Arduino boards
$15.99
Ex Tax: $15.99
  • Stock: In Stock
  • Model: EB0047246
  • SKU: EB0047246

Description:

HEART is build with MAX30100.

MAX30100 is a complete pulse oximetry and heartrate sensor system solution designed for the demanding requirements of wearable devices. The MAX30100 provides very small total solution size without sacrificing optical or electrical performance. Minimal external hardware components are needed for integration into a wearable device.

  • How do we use this Unit to test the heart rate and ? Put your finger on the detection area.

  • What is the communication protocol between M5 core and this unit? I2C.

Product Features:

  • Programmable Sample Rate and LED Current for Power Savings
  • Ultra-Low Shutdown Current (0.7µA, typ)
  • Advanced Functionality Improves Measurement Performance
  • High Sample Rate Capability
  • Fast Data Output Capability
  • GROVE interface
  • Software Develop platform:
  • Two Le go-compatible holes
  • Product Size: 32.2mm x 24.2mm x 8.2mm
  • Product weight: 4.6g

Package Included:

  • 1x HEART Unit
  • 1x Grove Cable
  • Offical Video: https://www.youtube.com/channel/UCozgFVglWYQXbvTmGyS739w

  • Forum: http://forum.m5stack.com/

  • Datasheet - MAX30100: https://datasheets.maximintegrated.com/en/ds/MAX30110.pdf

  • MAX30100lib: https://github.com/oxullo/-MAX30100

EasyLoader

Mini-Heartbeat-Rate-Sensor-MAX30100-Heart-Sensor-Module-Sensor-for-Low-Power-Oxygen-Pulse-I2C-Interf-1498034

1.EasyLoader is a simple and fast program burner, and each product page has a product-related case program for EasyLoader.

2.After downloading the software, double-click to run the application, connect the M5 device to the computer via the data cable, select the port parameters, and click "Burn" to start burning.

3.The CP210X (USB driver) needs to be installed before the EasyLoader is burned. Click here to view the driver installation tutorial: https://docs.m5stack.com/#/en/related_documents/establish_serial_connection



1. IDE

To get the code, please click here: https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/HEART/.

  /*      Install MAX30100lib Library first.        MAX30100_RawData.ino  */  #include <Wire.h>  #include "MAX30100.h"    #define SAMPLING_RATE   MAX30100_SAMPRATE_100HZ  #define IR_LED_CURRENT  MAX30100_LED_CURR_50MA  #define RED_LED_CURRENT MAX30100_LED_CURR_27_1MA  // set HIGHRES_MODE to true only  // when setting PULSE_WIDTH to MAX30100_SPC_PW_1600US_16BITS  #define PULSE_WIDTH MAX30100_SPC_PW_1600US_16BITS  #define HIGHRES_MODE    true    // new a object  MAX30100 sensor;    void setup()  {      Serial.begin(115200);      Serial.print("Initializing MAX30100..");      if (!sensor.begin()) {          Serial.println("FAILED");          for(;;);      } else {          Serial.println("SUCCESS");      }      sensor.setMode(MAX30100_MODE_SPO2_HR);      sensor.setLedsCurrent(IR_LED_CURRENT, RED_LED_CURRENT);      sensor.setLedsPulseWidth(PULSE_WIDTH);      sensor.setSamplingRate(SAMPLING_RATE);      sensor.setHighresModeEnabled(HIGHRES_MODE);  }    void loop()  {      uint16_t ir, red;      sensor.update();      while (sensor.getRawValues(&ir, &red)) {          Serial.print(ir);          Serial.print('t');          Serial.println(red);      }  }
Mini-Heartbeat-Rate-Sensor-MAX30100-Heart-Sensor-Module-Sensor-for-Low-Power-Oxygen-Pulse-I2C-Interf-1498034

Schematic:

Mini-Heartbeat-Rate-Sensor-MAX30100-Heart-Sensor-Module-Sensor-for-Low-Power-Oxygen-Pulse-I2C-Interf-1498034

PinMap:

M5Core(GROVE A) GPIO22 GPIO21 5V GND
HEART Unit SCL SDA 5V GND



Mini-Heartbeat-Rate-Sensor-MAX30100-Heart-Sensor-Module-Sensor-for-Low-Power-Oxygen-Pulse-I2C-Interf-1498034

Mini-Heartbeat-Rate-Sensor-MAX30100-Heart-Sensor-Module-Sensor-for-Low-Power-Oxygen-Pulse-I2C-Interf-1498034

Mini-Heartbeat-Rate-Sensor-MAX30100-Heart-Sensor-Module-Sensor-for-Low-Power-Oxygen-Pulse-I2C-Interf-1498034

Mini-Heartbeat-Rate-Sensor-MAX30100-Heart-Sensor-Module-Sensor-for-Low-Power-Oxygen-Pulse-I2C-Interf-1498034

Mini-Heartbeat-Rate-Sensor-MAX30100-Heart-Sensor-Module-Sensor-for-Low-Power-Oxygen-Pulse-I2C-Interf-1498034

Write a review

Note: HTML is not translated!
Bad Good

Shipping Time


After you successfully placed an order at RenhotecIC.com, you will receive a confirmation email with your invoice. Once your order is shipped, you will be emailed with the tracking information of your package. Also, you can choose your preferred shipping method during the checkout process. Kindly advise: please select DHL/FedEx if you need our product urgently.

The timeline of the whole shipping process is shown below:

img

The total delivery time is calculated from the time your order is successfully placed to the time received. Total delivery time is broken down into processing time and shipping time.

Processing time: The time it takes to prepare your item(s), includes preparing your items, performing quality inspections, and packaging for shipment. Normally, the processing time is 1-3 days (Only include Monday to Saturday ) after getting your order.

Shipping time: The time for your item(s) to travel from our warehouse to your destination. The shipping time depends on the shipping method you chose. Please refer to the shipping rate section for details. 


Shipping Rates


You could choose the shipping method based on your preference during checkout, different shipping methods will apply different rates and shipping times. Please check the following chart for detail:


Shipping MethodShipping RatesShipping Times
Flat Shipping (Promotion)
$10About 5-30 Working Days to Worldwide (Only include Monday to Saturday )

Standard Express(0.5KG starting price listed)

Based On WeightsAbout 5-15 Working Days to Worldwide (Only include Monday to Saturday )

Priority Express (0.5KG starting price listed)

Based On WeightsAbout 3-7 Working Days to Worldwide (Only include Monday to Saturday )

In addition, the transit time depends on where you're located, the shipping method you choose, and where your package comes from. We will keep you informed of any problems here to help you get your order as soon as possible. 

If you want to know more information, please contact the customer service by contact form or sales@renhotecic.com. We will settle your problem as soon as possible. Enjoy shopping!