File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed
Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ ///////////////////////////////////////////////////////////////////////////////////////////
3+ Plotter is an Arduino library that allows easy multi-variable and multi-graph plotting. The
4+ library supports plots against time as well as 2-variable "X vs Y" graphing.
5+ -------------------------------------------------------------------------------------------
6+ The library transfers information via the serial port to a listener program written with the
7+ software provided by Processing. No modification is needed to this program; graph placement,
8+ axis-scaling, etc. are handled automatically.
9+ Multiple options for this listener are avaialable at:
10+
11+ https://github.com/devinconley/ArduinoPlotter
12+
13+ (including stand-alone applications as well as the src Processing script)
14+ -------------------------------------------------------------------------------------------
15+ Plotter
16+ v0.0.0
17+ https://github.com/devinconley/ArduinoPlotter
18+ by Devin Conley
19+ ///////////////////////////////////////////////////////////////////////////////////////////
20+ */
21+
122#ifndef PLOTTER_H
223#define PLOTTER_H
324
@@ -15,7 +36,6 @@ class Plotter {
1536
1637 void addXYGraph (String title, int points_displayed,
1738 String labelX, double * refX, String labelY, double * refY);
18- void init ();
1939 void plot ();
2040
2141
You can’t perform that action at this time.
0 commit comments