Skip to content

Commit b38da29

Browse files
committed
Fixed a bug in the plot_fiiltered_emg example sketch.
1 parent 6d9c5ae commit b38da29

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/plot_filtered_emg/plot_filtered_emg.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ void printEMG(Devlpr *d) {
1212
// we will print four values each time: -1024, 1024, filtered, and raw EMG
1313
// the -1024 and 1024 simply give us a top and bottom line in the plotter
1414
Serial.print("-1024 1024 ");
15-
Serial.println(filtered);
15+
Serial.print(filtered);
1616
Serial.print(" ");
1717
Serial.println(raw);
1818
}

0 commit comments

Comments
 (0)