The Heartbeat Sensor (Manufacturer Part ID: HW-827) by PulseSensor.com is a device designed to measure heart rate by detecting the pulse through optical or electrical means. This sensor is commonly used in medical and fitness applications, such as heart rate monitors, fitness trackers, and health monitoring systems. It provides an easy and non-invasive way to measure heart rate, making it ideal for both professional and personal use.
Parameter | Value |
---|---|
Operating Voltage | 3.3V - 5V |
Operating Current | 4mA |
Output Signal | Analog |
Sensor Type | Optical |
Detection Range | 30-240 BPM (Beats Per Minute) |
Dimensions | 0.75" x 0.75" (19mm x 19mm) |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (3.3V - 5V) |
2 | GND | Ground |
3 | SIG | Analog signal output (heart rate data) |
VCC (Sensor) ----> 5V (Arduino)
GND (Sensor) ----> GND (Arduino)
SIG (Sensor) ----> A0 (Arduino)
// Heartbeat Sensor Example Code
// Connect the sensor's SIG pin to A0 on the Arduino
const int sensorPin = A0; // Analog input pin for the sensor
int sensorValue = 0; // Variable to store the sensor value
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the analog value from the sensor
Serial.println(sensorValue); // Print the sensor value to the serial monitor
delay(100); // Wait for 100 milliseconds before the next reading
}
No Signal Output:
Inaccurate Readings:
Fluctuating Signal:
Q1: Can the sensor be used with a 3.3V power supply?
Q2: How do I calibrate the sensor?
Q3: Can the sensor be used for continuous monitoring?
Q4: What is the detection range of the sensor?
By following this documentation, users can effectively integrate and utilize the Heartbeat Sensor (HW-827) in their projects, ensuring accurate and reliable heart rate measurements.