Práctica Pulsómetro Arduino (1)
Práctica Pulsómetro Arduino (1)
LABORATORIO
Práctica
Pulsómetro Arduino
Nº Apellidos Nombre
1
REFERENCIAS
• J. G. Webster (ed.) Medical instrumentation: application and design 3rd ed. New York: John
Wiley & Sons, 1998
Recursos
❑ Ordenador personal
❑ Arduino Uno https://www.arduino.cc/en/Main/Software
• Excellent responsivity
- Close responsivity to the human eye
• Miniature ChipLED Leadfree surface-mount package
Height – 0.55 mm
Width – 1.60 mm
Depth – 1.50 mm
• Low sensitivity variation across various light sources
• Operating temperature: -40°C to 85°C
• Vcc supply 1.6 to 5.5V
• Lead-free package, RoHS compliance
• Output linearity across wide illumination range
• High output saturation voltage
if(Signal > Threshold){ // If the signal is above "550", then "turn-on" Arduino's on-Board LED.
digitalWrite(LED13,HIGH);
} else {
digitalWrite(LED13,LOW); // Else, the sigal must be below "550", so "turn-off" this LED.
}
delay(10);