Skip to content

Commit 02a3534

Browse files
committed
compatibility issues with dtostrf... switching to print
1 parent 29cce55 commit 02a3534

File tree

11 files changed

+12
-13
lines changed

11 files changed

+12
-13
lines changed

listener/Graph.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-------------------------------------------------------------------------------------------
1919
Arduino Plotter Listener
20-
v2.2.0
20+
v2.2.1
2121
https://github.com/devinaconley/arduino-plotter
2222
by Devin Conley
2323
===========================================================================================

listener/listener.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
1919
-------------------------------------------------------------------------------------------
2020
Arduino Plotter Listener
21-
v2.2.0
21+
v2.2.1
2222
https://github.com/devinaconley/arduino-plotter
2323
by Devin Conley
2424
===========================================================================================

plotter/Plotter.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-------------------------------------------------------------------------------------------
1919
Plotter
20-
v2.2.0
20+
v2.2.1
2121
https://github.com/devinaconley/arduino-plotter
2222
by Devin Conley
2323
===========================================================================================
@@ -241,8 +241,7 @@ void Plotter::Graph::Plot( bool config )
241241
char val[15];
242242
for (int i = 0; i < size; i++)
243243
{
244-
dtostrf( wrappers[i].GetValue(), 1, 7, val );
245-
Serial.print( val );
244+
Serial.print( wrappers[i].GetValue(), 8 );
246245
if ( i + 1 < size )
247246
{
248247
Serial.print( "," );

plotter/Plotter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-------------------------------------------------------------------------------------------
1919
Plotter
20-
v2.2.0
20+
v2.2.1
2121
https://github.com/devinaconley/arduino-plotter
2222
by Devin Conley
2323
===========================================================================================

plotter/examples/control_points_displayed/control_points_displayed.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Example to demonstrate effect of "Points Displayed" in Time Graph and in XY Graph
44
-------------------------------------------------------------------------------------------
55
Plotter
6-
v2.2.0
6+
v2.2.1
77
https://github.com/devinaconley/arduino-plotter
88
by Devin Conley
99
===========================================================================================

plotter/examples/different_types/different_types.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Example to demonstrate effect of plotting different variable types
44
-------------------------------------------------------------------------------------------
55
Plotter
6-
v2.2.0
6+
v2.2.1
77
https://github.com/devinaconley/arduino-plotter
88
by Devin Conley
99
===========================================================================================

plotter/examples/dynamically_modify_graph_layout/dynamically_modify_graph_layout.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Example to demonstrate dynamic addition and removal of graphs
44
-------------------------------------------------------------------------------------------
55
Plotter
6-
v2.2.0
6+
v2.2.1
77
https://github.com/devinaconley/arduino-plotter
88
by Devin Conley
99
===========================================================================================

plotter/examples/multivariable_plotting/multivariable_plotting.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Example to demonstrate multi-variable plotting against time
44
-------------------------------------------------------------------------------------------
55
Plotter
6-
v2.2.0
6+
v2.2.1
77
https://github.com/devinaconley/arduino-plotter
88
by Devin Conley
99
===========================================================================================

plotter/examples/quick_start/quick_start.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Example used in Quick-Start
44
-------------------------------------------------------------------------------------------
55
Plotter
6-
v2.2.0
6+
v2.2.1
77
https://github.com/devinaconley/arduino-plotter
88
by Devin Conley
99
===========================================================================================

plotter/examples/set_colors/set_colors.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Example to demonstrate configuring specific colors for each variable
44
-------------------------------------------------------------------------------------------
55
Plotter
6-
v2.2.0
6+
v2.2.1
77
https://github.com/deviaconley/arduino-plotter
88
by Devin Conley
99
===========================================================================================

plotter/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Plotter
2-
version=2.2.0
2+
version=2.2.1
33
author=Devin Conley <devinconley@jhu.edu>
44
maintainer=Devin Conley <devinconley@jhu.edu>
55
sentence=An Arduino library for easy plotting on host computer via serial communication.

0 commit comments

Comments
 (0)