本帖最后由 NARUTO丷L 于 2019-6-1 21:07 编辑
我已经实现了,其实很简单,网上有ad8232和arduino的说明书,ad8232不需要配置,重点在arduino的代码编写,但也不长。以下是arduino的代码:
void setup() {
// initialize the serial communication: 初始化串行通信
Serial.begin(4800);
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);
}
上位机显示心电图可以用Processing,这部分代码可以自己编写。
本帖最后由 NARUTO丷L 于 2019-6-1 21:07 编辑
我已经实现了,其实很简单,网上有ad8232和arduino的说明书,ad8232不需要配置,重点在arduino的代码编写,但也不长。以下是arduino的代码:
void setup() {
// initialize the serial communication: 初始化串行通信
Serial.begin(4800);
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);
}
上位机显示心电图可以用Processing,这部分代码可以自己编写。
1
举报