deleted non working 433 rcv
[svn42.git] / rf433rcv / plot.py
diff --git a/rf433rcv/plot.py b/rf433rcv/plot.py
deleted file mode 100755 (executable)
index 7afae9c..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/python
-
-import fileinput
-import numpy
-import pylab
-
-for line in fileinput.input():
-  line = line[0:-1]
-  data = numpy.array(line.split(","))
-  pylab.plot(range(len(data)),data)
-  pylab.show()
-