RPICT3: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 1: | Line 1: | ||
[[File:IMG_0767.png]] | [[File:IMG_0767.png | 300px | right]] | ||
[http://lechacalshop.com/en/internetofthing/9-raspberrypi-3x-current-sensor-adaptor-emoncms-compatible.html Link to shop] | |||
==View the data with Python== | ==View the data with Python== | ||
Revision as of 17:15, 11 March 2017

View the data with Python
Please note the uploaded sketch must have CSV enabled. The example script below will be a good starting point.
First of all make sure you have python-serial package installed
$ sudo apt-get install python-serial
Then copy the following into an executable file and run it.
#!/usr/bin/python
import serial
ser = serial.Serial('/dev/ttyAMA0', 38400, timeout=1)
try:
while 1:
response = ser.readline()
z = response.split(",")
if len(z)>=2:
print "Power 1: %s Watts" % z[0]
print "Power 2: %s Watts" % z[1]
print "Power 3: %s Watts" % z[2][:-2]
except KeyboardInterrupt:
ser.close()