Skip to content

Commit 44eeb9a

Browse files
committed
updated header
1 parent e5f0ea3 commit 44eeb9a

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

Plotter/Plotter.h

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
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

0 commit comments

Comments
 (0)