|
1 | 1 | /* |
2 | 2 | =========================================================================================== |
3 | | - This listener is the source processing script that corresponds to the Arduino Plotter |
4 | | - library for Arduino. The library supports plots against time as well as 2-variable |
5 | | - "X vs Y" graphing. |
| 3 | + This listener is the main processing script that corresponds to the Arduino Plotter |
| 4 | + library for Arduino. This driver script handles serial port information and manages a |
| 5 | + set of Graph objects to do the actual plotting. |
6 | 6 | ------------------------------------------------------------------------------------------- |
7 | | - The library transfers information via the serial port to a listener program written with the |
| 7 | + The library stores and handles all relevant graph information and variable references, |
| 8 | + and transfers information via the serial port to a listener program written with the |
8 | 9 | software provided by Processing. No modification is needed to this program; graph placement, |
9 | 10 | axis-scaling, etc. are handled automatically. |
10 | 11 | Multiple options for this listener are available including stand-alone applications as well |
11 | 12 | as the source Processing script. |
12 | 13 |
|
13 | | - The library, these listeners, a quick-start guide, and usage examples are available at: |
| 14 | + The library, these listeners, a quick-start guide, documentation, and usage examples are |
| 15 | + available at: |
14 | 16 | |
15 | | - https://github.com/devinconley/Arduino-Plotter |
| 17 | + https://github.com/devinaconley/arduino-plotter |
16 | 18 |
|
17 | 19 | ------------------------------------------------------------------------------------------- |
18 | 20 | Arduino Plotter Listener |
19 | | - v2.0.0 |
20 | | - https://github.com/devinconley/Arduino-Plotter |
| 21 | + v2.1.0 |
| 22 | + https://github.com/devinaconley/arduino-plotter |
21 | 23 | by Devin Conley |
22 | 24 | =========================================================================================== |
23 | 25 | */ |
@@ -166,7 +168,6 @@ void serialEvent( Serial ser ) |
166 | 168 | { |
167 | 169 | colorsTemp[j] = COLORMAP.get( "green" ); |
168 | 170 | } |
169 | | - println( colorsTemp[j] ); |
170 | 171 | } |
171 | 172 |
|
172 | 173 | if ( xvyTemp ) |
|
0 commit comments