mosquitto/misc/currentcost/cc128_read.pl
2014-05-07 23:27:00 +01:00

24 lines
463 B
Perl
Executable File

#!/usr/bin/perl -w
# Reads data from a Current Cost device via serial port.
# Spawns
use strict;
use Device::SerialPort qw( :PARAM :STAT 0.07 );
my $pubclient = "mosquitto_pub -t sensors/cc128/raw -q 2 -l";
my $PORT = "/dev/ttyUSB0";
local $| = 1;
my $ob = Device::SerialPort->new($PORT);
$ob->baudrate(57600);
$ob->write_settings;
open(SERIAL, "+<$PORT");
open(MQTT, "|$pubclient");
while (my $line = <SERIAL>) {
print(MQTT "$line");
}
close(MQTT);