Home | History | Annotate | Download | only in java

Lines Matching refs:heart

39 		// Instantiate a Grove Ear-clip Heart Rate sensor on digital pin D2
40 upm_groveehr.GroveEHR heart = new upm_groveehr.GroveEHR(2);
43 heart.clearBeatCounter();
44 heart.initClock();
45 heart.startBeatCounter();
48 long millis = heart.getMillis();
49 long beats = heart.beatCounter();
53 int hr = heart.heartRate();
55 // output milliseconds passed, beat count, and computed heart rate
56 System.out.println("Millis: " + millis + ", Beats: " + beats + ", Heart rate: " + hr);