مشاهدة الفيديو هنا :
مخطط الرسم البياني :
كود اردوينو :
// Project : Heart Rate using Pulse Sensor and Arduino
// By : DIY Channel : Abdellatif Mimoune
// My Youtube Channel : https://www.youtube.com/c/DIYChannel2019
int PulseSensorPurplePin = 0;
int LED13 = 13;
int Signal;
int Threshold = 550;
void setup() {
pinMode(LED13,OUTPUT);
Serial.begin(9600);
}
void loop() {
Signal = analogRead(PulseSensorPurplePin);
Serial.println(Signal);
if(Signal > Threshold){
digitalWrite(LED13,HIGH);
} else {
digitalWrite(LED13,LOW);
}
delay(10);
}
No comments:
Post a Comment