File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
examples/Example3_modify_AGC_Algo Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -83,24 +83,24 @@ void setup(){
83
83
}
84
84
85
85
// Let's read back what we set....
86
- int algoVal = bioHub.readAlgoRange ()) ;
86
+ int algoVal = bioHub.readAlgoRange ();
87
87
Serial.print (" Algorithm set to: " );
88
88
Serial.println (algoVal);
89
89
90
- int stepVal = bioHub.readAlgoStepSize ()) ;
90
+ int stepVal = bioHub.readAlgoStepSize ();
91
91
Serial.print (" Algorithm set to: " );
92
92
Serial.println (stepVal);
93
93
94
- int senVal = bioHub.readAlgoSensitivity ()) ;
94
+ int senVal = bioHub.readAlgoSensitivity ();
95
95
Serial.print (" Algorithm set to: " );
96
96
Serial.println (senVal);
97
97
98
- int sampVal = bioHub.readAlgoSamples ()) ;
98
+ int sampVal = bioHub.readAlgoSamples ();
99
99
Serial.print (" Algorithm set to: " );
100
100
Serial.println (sampVal);
101
101
102
102
Serial.println (" Configuing Sensor." );
103
- error = configBpm (MODE_ONE);
103
+ error = bioHub. configBpm (MODE_ONE);
104
104
if (error > 0 ){
105
105
Serial.println (" Could not configure the sensor." );
106
106
}
You can’t perform that action at this time.
0 commit comments