Difference between revisions of "S0 serial reader"
From PhotoVoltaic Logger new generation
(Created page with "== Abstract == This is a part of the [http://github.com/k-ko/PVLng-scripts PVLng-scripts repository]. Scripts located in S0/ To read S0 impulses from e.g. energy meters, a ...") |
m (→USB to TTL Serial Cable) |
||
Line 38: | Line 38: | ||
=== USB to TTL Serial Cable === | === USB to TTL Serial Cable === | ||
+ | |||
+ | [[File:FTDI-FT232-USBtoTTL.jpg|300px|right]] | ||
I found also a bit cheaper possibility. | I found also a bit cheaper possibility. | ||
− | |||
− | |||
This cable is used for Arduino boards but it works perfect also for S0 signals. | This cable is used for Arduino boards but it works perfect also for S0 signals. | ||
− | '''''Please | + | '''''Please note:''''' |
* You need a cable with '''6 pins''', not only '''4 pins''', although we need only 2 of them! | * You need a cable with '''6 pins''', not only '''4 pins''', although we need only 2 of them! | ||
Revision as of 12:31, 28 February 2014
Contents
Abstract
This is a part of the PVLng-scripts repository.
Scripts located in S0/
To read S0 impulses from e.g. energy meters, a program and a script to store this into PVLng is included.
Hardware requirements
Energy meter
You need a energy meter with S0 interface, best for 3 phases.
Serial port adapter
If your computer not more have a serial port (like mine), you need a USB serial adapter.
The best choice is an adapter with a FTDI / FT232RL chip set.
Digitus DA-70156 USB to Serial Adapter, USB 2.0
Connect your S0 port like this to your serial interface:
During prototyping is a gender changer (female/female) recommended.
Or you recycle an old serial mouse cable...
USB to TTL Serial Cable
I found also a bit cheaper possibility.
This cable is used for Arduino boards but it works perfect also for S0 signals.
Please note:
- You need a cable with 6 pins, not only 4 pins, although we need only 2 of them!
Wire | Signal |
---|---|
Red | 5V |
Black | GND |
White | RXD |
Green | TXD |
Yellow | RTS |
Blue | CTS |
You can find them on eBay, shipping from China to Germany took abt. 3 weeks.
Channel definition
Please put the device where your energy meter is connected to into the channel attribute like this:
You should also define a fixed name for your device.
Mode of operation
An energy meter with S0 interface sends depending of the actual power usage an amount of impulses per kilo watt hour.
A common frequency is 1000 or 2000 per kilo watt hour, or 800 as for our energy meter.
The S0 binary listen the device and detects the time between these impulses. It converts them to power usage in watt.
Installation
$ cd S0/bin $ ./compile
Configuration
Please refer to S0.conf.dist to configure your environment regarding interfaces and channels.
$ cp S0.conf.dist S0.conf
Test
To test your configuration, run
$ ./S0.sh -tv S0.conf
Run with cron
Edit your crontab with
$ crontab -e
and add the following lines
# run S0 reader each 2 minutes */2 * * * * /path/to/PVLng-sctipts/S0/S0.sh S0.conf