Download presentation
Presentation is loading. Please wait.
Published byKurt de Groot Modified 5年之前
1
紅外線心律測定 S 劉鴻毅 S 林易霆 S 吳柏寰 S 林恩廷
2
Arduino
3
RPR220 光電傳感器
4
hc-05 Bluetooth modules
5
Structure
7
#include <SoftwareSerial.h>
#include <Wire.h> SoftwareSerial I2CBT(10,11); byte serialA; void setup(){ //define pin modes for tx,rx pin Serial.begin(9600); I2CBT.begin(9600); }
8
///////////main/////////// void loop (){ byte Data[3]; int cmmd[30];
int k; int i=analogead(A0);//read sensor value for(k=0;k<=29;k++){ cmmd[k]=analogRead(A0); Serial.println(cmmd[k]); delay(100); }; delay(10000); serialA=I2CBT.read(); Data[0]='a'; Data[1]=i/256; Data[2]=i%256; //Serial.println(i); if (serialA == 49){ for(int j=0;j<3;j++) I2CBT.write(Data[j]); serialA=0; } delay(100);
10
Problems Coding Sending Peaks
11
Finally 分工 藍牙程式: 吳柏寰 電路架設: 林恩廷 頻率程式: 林易霆、劉鴻毅 特別感謝:楊文彰 每分鐘心跳次數
12
thank you for your listening
Similar presentations