X-Git-Url: https://git.realraum.at/?a=blobdiff_plain;f=rf433rcv%2Fplot.py;fp=rf433rcv%2Fplot.py;h=350c40a0c8457e7584d10c6de5554c9ccd22c98f;hb=f9fae2d19cba2d5f0921d57170f4124ce49e7b8e;hp=0000000000000000000000000000000000000000;hpb=d1cb582de8efadfa0ca4a26e872d813f6d5a1571;p=svn42.git diff --git a/rf433rcv/plot.py b/rf433rcv/plot.py new file mode 100755 index 0000000..350c40a --- /dev/null +++ b/rf433rcv/plot.py @@ -0,0 +1,11 @@ +#!/usr/bin/python + +import fileinput +import numpy +import pylab + +for line in fileinput.input(): + data = numpy.array(line.split(",")) + pylab.plot(range(len(data)),data) + pylab.show() +