


In Stock
Price: KSH 400.00
Pulse Heart Rate Sensor
The Pulse Heart Rate Sensor is a compact and efficient device designed to measure heart rate in real-time. It is ideal for various applications including fitness tracking, health monitoring, and medical diagnostics. This sensor provides accurate readings, making it a valuable tool for personal and professional use.
Applications:
- Fitness Tracking: Monitor your heart rate during workouts to optimize your fitness routine.
- Health Monitoring: Keep track of your heart rate for better health management.
- Medical Use: Useful for medical professionals in diagnosing and monitoring patients.
Key Features:
- High accuracy and reliability for precise heart rate monitoring.
- Compact and lightweight design for easy integration into wearable devices.
- Compatible with Arduino, Raspberry Pi, and other microcontroller platforms.
- Real-time data output for immediate feedback.
Pinout Description:
- VCC: Connect to the power supply (usually 3.3V or 5V).
- GND: Ground connection to complete the circuit.
- Signal: Outputs the heart rate signal, which can be read by a microcontroller.
Enhance your health tracking and fitness routines with the Pulse Heart Rate Sensor. Available now in Kenya, it’s the perfect tool for anyone looking to monitor their heart health accurately and efficiently.
Sample Code for Arduino:
#includePulseSensorPlayground pulseSensor; void setup() { Serial.begin(9600); pulseSensor.analogInput(0); pulseSensor.begin(); } void loop() { int pulseRate = pulseSensor.getBeatsPerMinute(); if (pulseRate > 0) { Serial.print("Heart Rate: "); Serial.print(pulseRate); Serial.println(" BPM"); } delay(1000); }