Skip to content

Commit d4e797b

Browse files
committed
Remove !!! - causes avrdude to crash...
1 parent 58f9aa0 commit d4e797b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/Example1_config_BPM_Mode1/Example1_config_BPM_Mode1.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void setup(){
5858
if (result == 0) // Zero errors!
5959
Serial.println("Sensor started!");
6060
else
61-
Serial.println("Could not communicate with the sensor!!!");
61+
Serial.println("Could not communicate with the sensor!");
6262

6363
Serial.println("Configuring Sensor....");
6464
int error = bioHub.configBpm(MODE_ONE); // Configuring just the BPM settings.

examples/Example2_config_BPM_Mode2/Example2_config_BPM_Mode2.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void setup(){
6262
if (result == 0) //Zero errors!
6363
Serial.println("Sensor started!");
6464
else
65-
Serial.println("Could not communicate with the sensor!!!");
65+
Serial.println("Could not communicate with the sensor!");
6666

6767
Serial.println("Configuring Sensor....");
6868
int error = bioHub.configBpm(MODE_TWO); // Configuring just the BPM settings.

examples/Example5_define_pins_at_begin/Example5_define_pins_at_begin.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void setup(){
6363
if (result == 0) // Zero errors!
6464
Serial.println("Sensor started!");
6565
else
66-
Serial.println("Could not communicate with the sensor!!!");
66+
Serial.println("Could not communicate with the sensor!");
6767

6868
Serial.println("Configuring Sensor....");
6969
int error = bioHub.configBpm(MODE_ONE); // Configuring just the BPM settings.

0 commit comments

Comments
 (0)