Files at this revision

API Documentation at this revision

Comitter:
tknapp
Date:
Fri Jul 12 08:57:45 2013 +0000
Parent:
0:6885118d9d3f
Commit message:
Initial commit.

Changed in this revision

ASCIIGraph.cpp Show annotated file Show diff for this revision Revisions of this file
ASCIIGraph.h Show annotated file Show diff for this revision Revisions of this file
diff -r 6885118d9d3f -r 0f0b1ad6f3ac ASCIIGraph.cpp
--- a/ASCIIGraph.cpp	Fri Jul 12 08:50:39 2013 +0000
+++ b/ASCIIGraph.cpp	Fri Jul 12 08:57:45 2013 +0000
@@ -1,3 +1,9 @@
+/*
+ * mbed library to draw graphs to serial console
+ * Copyright (c) 2013 Tobias Knapp
+ * Released under the MIT License: http://mbed.org/license/mit
+ */
+
 #include "ASCIIGraph.h"
 
 ASCIIGraph::ASCIIGraph(Terminal * terminal, int startX, int startY, int width, int height, int labelXoffset){
diff -r 6885118d9d3f -r 0f0b1ad6f3ac ASCIIGraph.h
--- a/ASCIIGraph.h	Fri Jul 12 08:50:39 2013 +0000
+++ b/ASCIIGraph.h	Fri Jul 12 08:57:45 2013 +0000
@@ -1,3 +1,8 @@
+/*
+ * mbed library to draw graphs to serial console
+ * Copyright (c) 2013 Tobias Knapp
+ * Released under the MIT License: http://mbed.org/license/mit
+ */
 
 #include "Terminal.h"