Sensor Module ECG, EKG, AD8232 Kit
zoom_out_map
chevron_left chevron_right

Product images are for informational purposes only and may vary slightly depending on the batch and supplier. Product specifications and prices may be subject to change without notice. We do our best to provide accurate and complete product specifications, but they may not be completely accurate. If you encounter any such situation, please let us know.

The product is intended for specialists and requires qualified and authorized personnel. The product does not include assembly/use instructions . Putting the product into operation by unqualified persons leads to the loss of the warranty according to the Terms and Conditions on the site.

The specified technical parameters (current, power, etc.) represent maximum allowable values under ideal operating conditions. For safe use and optimal lifespan, it is recommended to operate the product continuously at no more than 50% of the specified maximum values.

Sensor Module ECG, EKG, AD8232 Kit

ECG kit with AD8232 and 3 electrodes, for measuring and visualizing the ECG signal in Arduino projects and other development boards. It effectively filters noise and provides a stable analog signal, includes electrode disconnection detection for more reliable measurements, works with 2 or 3 electrodes for flexibility, very low power consumption, heart rate LED and quick connection via 3.5 mm jack.

68.03 RON Tax included

56.22 RON Tax excluded

(5/5) out of 4 total ratings
Read the reviews
1-2 zile
check In Stoc

Shipping by Thursday 27 August

Close

This product has a warranty of 2 years.

INTERNATIONAL DELIVERY
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
FAST DISPATCH 24H
We ship from our stock within 24H
LOYALTY POINTS
You earn points with every order, worth 5%.

The module consists of the AD8232 ECG Module (an operational amplifier that attaches to the included sensors) and 3 sensors. The product is compatible with Arduino and other development boards.

The kit is ideal for projects measuring the electrical activity of the heart, the AD8232 module managing to filter out noise generated by the rest of the body.

The module benefits from a lead-off detection function, which signals the loss of contact with the skin, thus contributing to the reliability of the measurements. It can operate in both two-electrode and three-electrode configurations, being flexible and easy to adapt. With a very low power consumption of only 170 µA, it is ideal for portable devices. It includes an LED that signals the detected heart rate, and connections are easy to make using the 3.5 mm jack cable included in the package.

 

Specifications:

Supply voltage: 2.0V – 3.5V

Current consumption: ~170 µA

Analog output: offset 1.5V, amplitude 0-3V

CMRR: 80 dB at 60 Hz

Connectors: RA (right arm), LA (left arm), RL (right leg), 3.5 mm jack

Status LED: heart rate indication

Dimensions: 35 x 22mm

 

Usage:

Connection to Arduino:
AD8232 Module Pin Arduino Connection Function
3.3V 3.3V Module power supply
GND GND Ground
OUTPUT A0 ECG signal output (analog)
LO+ Digital 10 Lead-off detection
LO− Digital 11 Lead-off detection
SDN (optional) GND (or unconnected) Shutdown control (active LOW)

 

Electrode placement:
Cable label Body placement Description
RA (red) Right arm Signal electrode
LA (yellow) Left arm Signal electrode
RL (green) Right leg Reference electrode (GND)

 

Programming and visualization:

Use the Arduino IDE to upload a sketch that reads pin A0.

Open the Serial Plotter to view the ECG signal in real time.

Example code:

____________________________________________________________

// Pinout

const int ECG_PIN = A0;      // Analog ECG signal
const int LO_PLUS = 10;      // Lead-off detection LO+
const int LO_MINUS = 11;     // Lead-off detection LO-

void setup() {
Serial.begin(9600);  

pinMode(LO_PLUS, INPUT);
pinMode(LO_MINUS, INPUT);
}


void loop() {
int loPlusState = digitalRead(LO_PLUS);
int loMinusState = digitalRead(LO_MINUS);  

  // Check if electrodes are disconnected

if (loPlusState == HIGH || loMinusState == HIGH) {
  Serial.println("!!! ELECTRODES DISCONNECTED !!!");
  } else {

  // Read ECG signal
  int ecgValue = analogRead(ECG_PIN);
  Serial.println(ecgValue); // for Serial Plotter
  }

delay(1); // fast sampling rate
}

____________________________________________________

 

Recommendations:

Make sure the skin is clean for good electrode adhesion and slightly moisten the skin for better conductivity.

Avoid breadboards for connections – prefer stable connectors or solder joints.

Use a stable power supply to prevent interference and erroneous readings.

Use the serial monitor in Serial Plotter mode to see the graphical representation of the analog signal.

Placing the electrodes closer to the heart leads to more accurate readings.

 

Contents:

1x AD8232 Module

1x Set of 3 electrodes with wires

33257

Produs destinat utilizarii in proiecte electronice, automatizari, prototipare, educatie si cercetare.

Produsul trebuie utilizat numai conform specificatiilor tehnice mentionate in descriere si/sau in documentatia produsului.

Avertismente generale de siguranta:

Nu utilizati produsul la tensiuni, curenti sau temperaturi peste valorile specificate.

Montajul si conectarea trebuie realizate de persoane cu cunostinte tehnice minime in domeniul electric/electronic.

Evitati scurtcircuitele, inversarea polaritatii si conectarea gresita a alimentarii.

Nu lasati produsul alimentat nesupravegheat in timpul testelor.

Produsul nu este jucarie si nu este destinat copiilor.

Pentru modulele electronice, se recomanda utilizarea in carcase, panouri sau montaje protejate, dupa caz.

Identificare produs:

Denumirea produsului, codul/SKU-ul si caracteristicile tehnice sunt mentionate in pagina produsului si/sau pe eticheta ambalajului.

Producator / Importator / Distribuitor:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Website: www.sigmanortec.ro

Persoana responsabila in UE:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Documentatie si siguranta:

Pentru informatii suplimentare, fise tehnice, declaratii de conformitate sau instructiuni, ne puteti contacta la [email protected].