From c812ac6be426a9e1f43dfa15239dad8057edf0ca Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Sun, 21 Feb 2021 09:37:01 +0000 Subject: [PATCH 1/1] support multiple devices --- iio2mqtt.pl | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/iio2mqtt.pl b/iio2mqtt.pl index 1879ce1..e9ba122 100755 --- a/iio2mqtt.pl +++ b/iio2mqtt.pl @@ -21,10 +21,17 @@ while(1) { my $device; my $name; - my @influx; + my $influx = ''; + foreach ( split(/\n/, $iio) ) { if ( m/iio:device\d+:\s+(\S+)/ ) { $device = $1; + + if ( $influx =~ m/,$/ ) { + $influx =~ s/,$/ $t_influx\n/; + } + $influx .= "iio,dc=trnjanska,host=$hostname,device=$device "; + } elsif ( m/(\S+):\s+\(input\)/ ) { $name = $1; } elsif ( m/attr\s+0:\s+input\svalue: (\d+[\.\d]+)/ ) { @@ -36,13 +43,15 @@ while(1) { #print "$topic $val\n"; system "mosquitto_pub -h rpi2 -t $topic -m $val"; - push @influx, "${device}_${name}=$val"; + $influx .= "$name=$val,"; } else { #warn "# $_\n"; } } - my $influx = "iio,dc=trnjanska,host=$hostname " . join(",", @influx) . " $t_influx"; + + $influx =~ s/,$/ $t_influx/; system "curl --silent -XPOST '$influx_url' --data-binary '$influx'"; + warn "$influx\n"; sleep Time::HiRes::time + 1 - $t; } -- 2.20.1