RPICT8: Difference between revisions
Jump to navigation
Jump to search
(→Files) |
|||
Line 57: | Line 57: | ||
[[File:IMG_1065_small.png]] | [[File:IMG_1065_small.png]] | ||
[[File:IMG_1067_small.png]] | [[File:IMG_1067_small.png]] | ||
Revision as of 18:05, 2 July 2017
RPICT8

This page is for board specific information. More information can be found on the generic page for RPICT series.
- 8 AC current sensors.
- Compute real power.
- Fit on Raspberrypi 4 holes mounting pattern.
- AtMega328 Mcu (Arduino UNO)
- MCP3208 ADC
- Stackable (up to 5 boards together)
Recommended sensors
- AC Current sensor: SCT-013-000
Stacking Configuration
General stacking information is described in the RPICT stacking page.
RPICT_Stacking
Software Configuration
Using a serial line terminal program one can configure the following:
- Polling interval - Output format (csv or emoncms) - Calibration values (Voltage and Current) - Voltage/current combinations for real power computation. - Output channels
The documentation for serial configuration can be found on this page.
Over Serial Configuration - Sketch 2.2
Over Serial Configuration - Sketch 2.3
Over Serial Configuration - Sketch 2.4
Starting from sketch 2.4 the board can be configured with the online configurator.
Files
(note boards are sold already flashed with latest firmware).
Python demo script
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) try: while 1: response = ser.readline() z = response.split(",") if len(z)>=7: print "Power 1: %s Watts" % z[0] print "Power 2: %s Watts" % z[1] print "Power 3: %s Watts" % z[2] print "Power 4: %s Watts" % z[3] print "Power 5: %s Watts" % z[4] print "Power 6: %s Watts" % z[5] print "Power 7: %s Watts" % z[6] print "Power 8: %s Watts" % z[7][:-2] except KeyboardInterrupt: ser.close()