RPICT3: Difference between revisions

From lechacal
Jump to navigation Jump to search
No edit summary
Line 35: Line 35:
==Files==
==Files==
[http://lechacal.com/RPICT/3CT/RPICT3_v1_4.ino RPICT3 (v1.4)]
[http://lechacal.com/RPICT/3CT/RPICT3_v1_4.ino RPICT3 (v1.4)]
[http://lechacal.com/RPICT/3CT/RPICT3_v1_5.ino RPICT3 (v1.5)]

Revision as of 11:14, 6 August 2017

This page is for board specific information. More information can be found on the generic page for RPICT series.

Link to shop

  • 3x AC Current Sensor
  • Attiny85 Mcu

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()

Files

RPICT3 (v1.4) RPICT3 (v1.5)