心拍の生データ取得
PulseSensorPlayground を使わずにデータ習得してみた。これだね!!
かなり早いね。。。
シンプルにアナログ入力の表示のみ
イリーガル値のみ排除してシリアル出力
int sensorPin = A0; // select the input pin for the potentiometer
int sensorValue = 0; // variable to store the value coming from the sensor
void setup() {
Serial.begin(38400); // For Serial Monitor
}
void loop() {
// read the value from the sensor:
sensorValue = analogRead(sensorPin);
if ( sensorValue > 400 && sensorValue < 600 ) {
Serial.print( "600 500 400 "); // Print the value inside of myBPM.
Serial.println(sensorValue);
}
delay(10);
}