รหัสสินค้า | C17002 |
หมวดหมู่ | Biometrics ทางชีวภาพและร่างกาย |
ราคา | 440.00 บาท |
ขนาด | 1 |
ลงสินค้า | 20 พ.ค. 2562 |
อัพเดทล่าสุด | 11 ก.ค. 2568 |
ความพึงพอใจ | ยังไม่มีความคิดเห็น |
คงเหลือ | 0 ชิ้น |
Module AD8232 สำหรับใช้วัดชีพจร การตรวจคลื่นไฟฟ้าหัวใจ Electrocardiography หรือ ECG เป็นการตรวจทางการแพทย์ชนิดหนึ่งเพื่อนดูกิจกรรมของหัวใจเพื่อให้แพทย์ช่วยวิจัยความผิดปกติต่อโรงหัวใจ การทำงาน Sensor จะทำการตรวจสอบสัญญาณไฟฟ้าของหัวใจในแต่ละจังหวะของการเต้นของหัวใจ ดูว่ามีการบีบตัวของหัวใจสมบูรณ์ในการส่งเลือดไปเลี้ยงส่วนต่างๆของร่างการ
The AD8232 is an integrated circuit that can be used to measure electrocardiogram (ECG) signals. It can be used with an Arduino board to measure the electrical activity of a person's heart. The circuit includes amplifiers to amplify the small ECG signals, filters to remove unwanted noise, and an analog-to-digital converter to convert the analog signals to digital data that can be read by the Arduino board. The AD8232 can be interfaced with the Arduino board using the analog input pins. The Arduino can then process the data and display the ECG waveform on a display or send the data to a computer for further analysis.
ข้อมูลเพิ่มเติม
สินค้า 1 ชุดประกอบด้วย
การต่อใช้งาน Module AD8232 กับ Arduino
Module AD8232 | Arduino |
GND | GND |
3.3V | 3.3V |
Output | A0 |
L0- | 11 |
L0+ | 10 |
SDN | ไม่ต้องต่อสาย |
การติดตั้ง Sensor ไปยังร่างกาย
ตัวอย่าง Code Arduino
void setup() {
// initialize the serial communication:
Serial.begin(9600);
pinMode(10, INPUT); // Setup for leads off detection LO +
pinMode(11, INPUT); // Setup for leads off detection LO -}
void loop() {
if((digitalRead(10) == 1)||(digitalRead(11) == 1)){
Serial.println('!');
}
else{
// send the value of analog input 0:
Serial.println(analogRead(A0));
}
//Wait for a bit to keep serial data from saturating
delay(1);
}
บทความสอนใช้งาน
หน้าที่เข้าชม | 4,510,768 ครั้ง |
ผู้ชมทั้งหมด | 2,466,540 ครั้ง |
ร้านค้าอัพเดท | 6 ก.ย. 2568 |