

Nabız, a component designed by Nabız, is a versatile electronic device primarily used for generating or measuring pulse signals. In biomedical applications, it is commonly employed as a heart rate or pulse rate sensor. This component is ideal for projects involving health monitoring, fitness tracking, and biofeedback systems. Its compact design and ease of integration make it suitable for both hobbyist and professional applications.








The Nabız component is designed to operate efficiently in a variety of environments. Below are its key technical details:
| Parameter | Value |
|---|---|
| Manufacturer | Nabız |
| Part ID | Nabız |
| Operating Voltage | 3.3V to 5V |
| Operating Current | < 10mA |
| Output Signal Type | Digital or Analog (depending on model) |
| Pulse Detection Range | 30 to 240 beats per minute (BPM) |
| Dimensions | 25mm x 15mm x 5mm |
| Interface | 3-pin header (VCC, GND, OUT) |
| Pin Name | Pin Number | Description |
|---|---|---|
| VCC | 1 | Power supply input (3.3V to 5V) |
| GND | 2 | Ground connection |
| OUT | 3 | Output signal (pulse signal in digital/analog) |
The Nabız component is straightforward to use and can be integrated into a variety of circuits. Below are the steps and best practices for using the component:
Below is an example of how to connect and use the Nabız component with an Arduino UNO to measure pulse rate:
// Nabız Pulse Sensor Example Code
// This code reads the pulse signal from the Nabız component and prints the
// pulse rate to the Serial Monitor.
const int pulsePin = 2; // Pin connected to the OUT pin of Nabız
int pulseState = 0; // Variable to store the pulse signal state
void setup() {
pinMode(pulsePin, INPUT); // Set the pulse pin as input
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
pulseState = digitalRead(pulsePin); // Read the pulse signal
if (pulseState == HIGH) {
// If a pulse is detected, print a message
Serial.println("Pulse detected!");
} else {
// If no pulse is detected, print a different message
Serial.println("No pulse detected.");
}
delay(100); // Delay to avoid flooding the Serial Monitor
}
No Output Signal
Inconsistent Readings
Low Sensitivity
Interference from Ambient Light
Q: Can the Nabız component be used with a 3.3V microcontroller?
A: Yes, the Nabız component supports an operating voltage range of 3.3V to 5V, making it compatible with 3.3V microcontrollers like the ESP32.
Q: How do I know if the sensor is working?
A: You can monitor the output signal using an oscilloscope or connect it to a microcontroller to read the pulse signal.
Q: Is the Nabız component waterproof?
A: No, the Nabız component is not waterproof. Avoid exposing it to moisture or liquids.
Q: Can I use the Nabız component for continuous monitoring?
A: Yes, the Nabız component is designed for continuous monitoring, but ensure proper placement and stable power for accurate readings.