############################################################### # # 70_JSONMETER.pm # # Copyright notice # # (c) 2014 Torsten Poitzsch < torsten . poitzsch at gmx . de > # # This module reads data from devices that provide OBIS compatible data # in json format (e.g. power meters) # # This script is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # The GNU General Public License can be found at # http://www.gnu.org/copyleft/gpl.html. # A copy is found in the text file GPL.txt and important notices to the license # from the author is found in LICENSE.txt distributed with these scripts. # # This script is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # This copyright notice MUST APPEAR in all copies of the script! # ############################################################################## # # define JSONMETER [interval] # # If is positive, new values are read every seconds. # The default for is 300 (i.e. 5 minutes). # ############################################################################## package main; use strict; use warnings; use Blocking; use IO::Socket::INET; use MIME::Base64; sub JSONMETER_Initialize($); sub JSONMETER_Define($$); sub JSONMETER_Undefine($$); sub JSONMETER_Attr($@); sub JSONMETER_Set($$@); sub JSONMETER_Get($@); sub JSONMETER_GetUpdate($); sub JSONMETER_GetJsonFile($); sub JSONMETER_ReadFromUrl($); sub JSONMETER_ReadFromFile($); sub JSONMETER_ParseJsonFile($); sub JSONMETER_UpdateAborted($); # Modul Version for remote debugging my $modulVersion = "2014-02-08"; ############################################################## # Syntax: meterType => port URL-Path ############################################################## my %meterTypes = ( ITF => "80 GetMeasuredValue.cgi" ,EFR => "80 json.txt" ,LS110 => "80 a?f=j" ); ############################################################## # Syntax: valueType, code, FHEM reading name, statisticType # valueType: 1=OBISvalue | 2=OBISvalueString | 3=jsonProperty | 4=jsonPropertyTime # statisticType: 0=noStatistic | 1=maxMinStatistic | 2=integralTimeStatistic ############################################################## my @jsonFields = ( [3, "meterType", "meterType", 0] # {"meterId": "0000000061015736", "meterType": "Simplex", "interval": 0, "entry": [ ,[4, "timestamp", "deviceTime", 0] # {"timestamp": 1389296286, "periodEntries": [ ,[3, "cnt", "electricityConsumed", 2] # {"cnt":" 22,285","pwr":764,"lvl":0,"dev":"","det":"","con":"OK","sts":"(06)","raw":0} ,[3, "pwr", "electricityPower", 1] # {"cnt":" 22,285","pwr":764,"lvl":0,"dev":"","det":"","con":"OK","sts":"(06)","raw":0} ,[1, "010000090B00", "deviceTime", 0] # { "obis":"010000090B00","value":"dd.mm.yyyy,hh:mm"} ,[2, "0.0.0", "meterID", 0] # {"obis": "0.0.0", "scale": 0, "value": 1627477814, "unit": "", "valueString": "0000000061015736" }, ,[1, "0100000000FF", "meterID", 0] # # { "obis":"0100000000FF","value":"xxxxx"}, ,[2, "0.2.0", "firmware", 0] # {"obis": "0.2.0", "scale": 0, "value": 0, "unit": "", "valueString": "V320090704" }, ,[1, "1.7.0|0100010700FF", "electricityPower", 1] # {"obis": "1.7.0", "scale": 0, "value": 392, "unit": "W", "valueString": "0000392" }, ,[1, "0100150700FF", "electricityPowerPhase1", 1] # {"obis":"0100150700FF","value":209.40,"unit":"W"}, ,[1, "0100290700FF", "electricityPowerPhase2", 1] # {"obis":"0100290700FF","value":14.27,"unit":"W"}, ,[1, "01003D0700FF", "electricityPowerPhase3", 1] # {"obis":"01003D0700FF","value":89.40,"unit":"W"}, ,[1, "1.8.0|0101010800FF", "electricityConsumed", 2] # {"obis": "1.8.0", "scale": 0, "value": 8802276, "unit": "Wh", "valueString": "0008802.276" }, ,[1, "0101010801FF", "electricityConsumedTariff1", 2] # {"obis":"0101010801FF","value":33.53,"unit":"kWh"}, ,[1, "0101010802FF", "electricityConsumedTariff2", 2] # {"obis":"0101010802FF","value":33.53,"unit":"kWh"}, ,[1, "0101010803FF", "electricityConsumedTariff3", 2] # {"obis":"0101010803FF","value":33.53,"unit":"kWh"}, ,[1, "0101010804FF", "electricityConsumedTariff4", 2] # {"obis":"0101010804FF","value":33.53,"unit":"kWh"}, ,[1, "0101010805FF", "electricityConsumedTariff5", 2] # {"obis":"0101010805FF","value":33.53,"unit":"kWh"}, ,[1, "010001080080", "electricityConsumedToday", 1] ,[1, "010001080081", "electricityConsumedYesterday", 1] ,[1, "010001080082", "electricityConsumedLastWeek", 1] ,[1, "010001080083", "electricityConsumedLastMonth", 1] ,[1, "010001080084", "electricityConsumedLastYear", 1] ,[1, "010002080080", "electricityProducedToday", 1] ,[1, "010002080081", "electricityProducedYesterday", 1] ,[1, "010002080082", "electricityProducedLastWeek", 1] ,[1, "010002080083", "electricityProducedLastMonth", 1] ,[1, "010002080084", "electricityProducedLastYear", 1] ,[1, "0101020800FF", "electricityPowerOutput", 1] ,[1, "010020070000", "electricityVoltagePhase1", 1] #{"obis":"010020070000","value":237.06,"unit":"V"}, ,[1, "010034070000", "electricityVoltagePhase2", 1] # {"obis":"010034070000","value":236.28,"unit":"V"}, ,[1, "010048070000", "electricityVoltagePhase3", 1] # {"obis":"010048070000","value":236.90,"unit":"V"}, ,[1, "01000E070000", "electricityFrequency", 1] # {"obis":"01000E070000","value":49.950,"unit":"Hz"} ); ############################################################## sub ########################################## JSONMETER_Initialize($) { my ($hash) = @_; $hash->{DefFn} = "JSONMETER_Define"; $hash->{UndefFn} = "JSONMETER_Undefine"; $hash->{SetFn} = "JSONMETER_Set"; $hash->{GetFn} = "JSONMETER_Get"; $hash->{AttrFn} = "JSONMETER_Attr"; $hash->{AttrList} = "disable:0,1 " ."doStatistics:0,1 " ."pathString " ."port " ."alwaysAnalyse:0,1 " ."electricityTariff " ."electricityTariff1 " ."electricityTariff2 " .$readingFnAttributes; } # end JSONMETER_Initialize sub ########################################## JSONMETER_Define($$) { my ($hash, $def) = @_; my @args = split("[ \t][ \t]*", $def); return "Usage: define JSONMETER [interval]" if(@args <3 || @args >5); my $name = $args[0]; my $type = $args[2]; my $interval = 5*60; my $host; my $typeStr; if ($type eq "file") { return "Usage: define JSONMETER url [interval]" if (@args >4); $interval = $args[3] if(int(@args) == 4); } else { return "Usage: define JSONMETER [interval]" if(@args <4); $host = $args[3]; $interval = $args[4] if(int(@args) == 5); } $interval = 10 if( $interval < 10 && $interval != 0); if ($type ne "url" && $type ne "file") { $typeStr = $meterTypes{$type}; return "Unknown type '$type': use url|file|". join ("|", keys(%meterTypes)) unless $typeStr; my @typeAttr = split / /, $typeStr; $hash->{PORT} = $typeAttr[0]; $hash->{urlPath} = $typeAttr[1]; } $hash->{NAME} = $name; $hash->{STATE} = "Initializing" if $interval > 0; $hash->{STATE} = "Manual mode" if $interval == 0; $hash->{HOST} = $host if $type ne "file"; $hash->{INTERVAL} = $interval; $hash->{NOTIFYDEV} = "global"; $hash->{deviceType} = $type; RemoveInternalTimer($hash); #Get first data after 13 seconds InternalTimer(gettimeofday() + 13, "JSONMETER_GetUpdate", $hash, 0) if $interval > 0; #Reset temporary values $hash->{fhem}{jsonInterpreter} = ""; $hash->{fhem}{modulVersion} = $modulVersion; Log3 $hash,5,"$name: JSONMETER.pm version is $modulVersion."; return undef; } #end JSONMETER_Define sub ########################################## JSONMETER_Undefine($$) { my ($hash, $args) = @_; RemoveInternalTimer($hash); BlockingKill($hash->{helper}{RUNNING_PID}) if(defined($hash->{helper}{RUNNING_PID})); return undef; } # end JSONMETER_Undefine sub ########################################## JSONMETER_Attr($@) { my ($cmd,$name,$aName,$aVal) = @_; # $cmd can be "del" or "set" # $name is device name # aName and aVal are Attribute name and value if ($cmd eq "set") { if ($aName eq "1allowSetParameter") { eval { qr/$aVal/ }; if ($@) { Log3 $name, 3, "JSONMETER: Invalid allowSetParameter in attr $name $aName $aVal: $@"; return "Invalid allowSetParameter $aVal"; } } } return undef; } # JSONMETER_Attr ende sub ########################################## JSONMETER_Set($$@) { my ($hash, $name, $cmd, $val) = @_; my $resultStr = ""; if($cmd eq 'statusRequest') { $hash->{LOCAL} = 1; JSONMETER_GetUpdate($hash); $hash->{LOCAL} = 0; return undef; } elsif($cmd eq 'restartJsonAnalysis') { $hash->{fhem}{jsonInterpreter} = ""; $hash->{LOCAL} = 1; JSONMETER_GetUpdate($hash); $hash->{LOCAL} = 0; return undef; } elsif($cmd eq 'INTERVAL' && int(@_)==4 ) { $val = 10 if( $val < 10 ); $hash->{INTERVAL}=$val; return "$name: Polling interval set to $val seconds."; } my $list = "statusRequest:noArg" ." restartJsonAnalysis:noArg" ." INTERVAL:slider,0,10,600"; return "Unknown argument $cmd, choose one of $list"; } # end JSONMETER_Set sub ########################################## JSONMETER_Get($@) { my ($hash, $name, $cmd) = @_; my $result; my $message; if ($cmd eq "jsonFile") { $result = JSONMETER_GetJsonFile $name; my @a = split /\|/, $result; if ($a[1] == 1) { $message = decode_base64($a[2]); } else { $message = $a[1]; } return $message; } elsif ($cmd eq "jsonAnalysis") { $hash->{fhem}{jsonInterpreter} = ""; $result = JSONMETER_GetJsonFile $name; $result = JSONMETER_ParseJsonFile $result; # my @a = split /\|/, $result; $message = decode_base64($result); #$a[2]); return $message; } my $list = "jsonFile:noArg" ." jsonAnalysis:noArg"; return "Unknown argument $cmd, choose one of $list"; } # end JSONMETER_Get sub ########################################## JSONMETER_GetUpdate($) { my ($hash) = @_; my $name = $hash->{NAME}; my $type = $hash->{deviceType}; if(!$hash->{LOCAL} && $hash->{INTERVAL} > 0) { RemoveInternalTimer($hash); InternalTimer(gettimeofday()+$hash->{INTERVAL}, "JSONMETER_GetUpdate", $hash, 1); } if ( ( $type eq "url" || $type eq "file" ) && ! defined($attr{$name}{"pathString"}) ) { Log3 $name,2,"$name - Error reading device: Please define the attribute 'pathString'"; $hash->{STATE} = "pathString missing"; return "$name|0|"."Error reading device: Please define the attribute 'pathString'."; } $hash->{helper}{RUNNING_PID} = BlockingCall("JSONMETER_GetJsonFile", $name, "JSONMETER_ParseJsonFile", 10, "JSONMETER_UpdateAborted", $hash) unless(exists($hash->{helper}{RUNNING_PID})); } sub ########################################## JSONMETER_GetJsonFile ($) { my ($name) = @_; my $returnStr; my $hash = $defs{$name}; my $type = $hash->{deviceType}; my $ip = ""; $ip = $hash->{HOST} if defined $hash->{HOST}; my $urlPath = ""; $urlPath = $hash->{urlPath} if defined $hash->{urlPath}; return "$name|0|".encode_base64("Error: deviceType '$type' Please define the attribute 'pathString' first.") if ($type eq "url" || $type eq "file") && ! defined($attr{$name}{"pathString"}); my $pathString = ""; $pathString = $attr{$name}{"pathString"} if defined($attr{$name}{"pathString"}); my $port = 80; $port = $hash->{PORT} if defined $hash->{PORT}; $port = $attr{$name}{"port"} if $type eq "url" && defined($attr{$name}{"port"}); $hash->{PORT} = $port if $type ne "file"; if ( $type eq "file") { $returnStr = JSONMETER_ReadFromFile $name."|".$pathString; } else { $returnStr = JSONMETER_ReadFromUrl $name."|".$ip."|".$port."|".$urlPath.$pathString; } return $returnStr; } sub ########################################## JSONMETER_ReadFromFile($) { my ($string) = @_; my ($name, $pathString) = split /\|/, $string; Log3 $name, 4, "$name: Open file '$pathString'"; if (open(IN, "<" . $pathString)) { my $message = join " ", ; # my @file = ; close(IN); Log3 $name, 4, "$name: Close file"; $message = encode_base64($message,""); return "$name|1|$message" ; } else { Log3 $name, 2, "$name Error: Cannot open file $pathString: $!"; return "$name|0|Error: Cannot open file";; } } # end JSONMETER_ReadFromFile sub ########################################## JSONMETER_ReadFromUrl($) { my ($string) = @_; my ($name, $ip, $port, $pathString) = split /\|/, $string; my $buf ; my $message ; Log3 $name, 4, "$name: opening socket to host $ip port $port" ; my $socket = new IO::Socket::INET ( PeerAddr => $ip, PeerPort => $port, Proto => 'tcp', Reuse => 0, Timeout => 9 ); if (!$socket) { Log3 $name, 1, "$name Error: Could not open connection to ip $ip port $port"; return "$name|0|Can't connect to ip $ip port $port"; } if (defined ($socket) and $socket and $socket->connected()) { print $socket "GET /$pathString HTTP/1.0\r\n\r\n"; Log3 $name, 4, "$name: Get json file from http://$ip:$port/$pathString"; $socket->autoflush(1); while ((read $socket, $buf, 1024) > 0) { $message .= $buf; } Log3 $name, 5, "$name: received:\n $message"; $socket->close(); Log3 $name, 4, "$name: Socket closed"; $message = encode_base64($message,""); return "$name|1|$message" ; } else { Log3 $name, 2, "$name: Cannot open socket to $ip:$port/$pathString"; return "$name|0|Error: Cannot open socket to $ip:$port/$pathString"; } } # end JSONMETER_ReadFromUrl sub ########################### JSONMETER_ParseJsonFile($) { my ($string) = @_; return unless(defined($string)); my (@a) = split("\\|", $string); my $hash = $defs{$a[0]}; my $name = $hash->{NAME}; my $value; my $returnStr; delete($hash->{helper}{RUNNING_PID}); if ( $a[1] == 1 ){ my $message = decode_base64($a[2]); readingsBeginUpdate($hash); my @fields=split(/\{/,$message); # JSON in einzelne Felder zerlegen my $jsonInterpreter = $hash->{fhem}{jsonInterpreter} || ""; my $alwaysAnalyse = $attr{$name}{alwaysAnalyse} || 0; $returnStr .= "================= Find JSON property ==================\n\n"; #################################### # ANALYSE once: Find all known obis codes in the first run and store in the item no, # value type and reading name in the jsonInterpreter #################################### if ( $jsonInterpreter eq "" || $alwaysAnalyse == 1 ) { Log3 $name, 3, "$name: Analyse JSON pathString for known readings" if $alwaysAnalyse != 1; Log3 $name, 4, "$name: Analyse JSON pathString for known readings" if $alwaysAnalyse == 1; foreach my $f (@jsonFields) { for(my $i=0; $i<=$#fields; $i++) { if ($$f[0] =~ /^[15]$/) { if ($fields[$i] =~ /"obis"\s*:\s*"($$f[1])"\s*[,}]/ && $fields[$i] =~ /"value"/) { $jsonInterpreter .= "|$i $$f[0] $$f[2] $$f[3]"; Log3 $name,4,"$name: OBIS code \"$$f[1]\" will be stored in $$f[2]"; $returnStr .= "OBIS code \"$$f[1]\" will be extracted as reading '$$f[2]' from part $i:\n$fields[$i]\n\n"; } } elsif ($$f[0] == 2) { if ($fields[$i] =~ /"obis"\s*:\s*"($$f[1])"\s*[,}]/ && $fields[$i] =~ /"valueString"/) { $jsonInterpreter .= "|$i $$f[0] $$f[2] $$f[3]"; Log3 $name,4,"$name: OBIS code \"$$f[1]\" will be stored in $$f[2]"; $returnStr .= "OBIS code \"$$f[1]\" will be extracted as reading '$$f[2]' from part $i:\n$fields[$i]\n\n"; } } elsif ($$f[0] == 3) { if ($fields[$i] =~ /"($$f[1])"\s*:/) { $jsonInterpreter .= "|$i $$f[0] $$f[2] $$f[3] $$f[1]"; Log3 $name,4,"$name: Property \"$$f[1]\" will be stored in $$f[2]"; $returnStr .= "Property \"$$f[1]\" will be extracted as reading '$$f[2]' from part $i:\n$fields[$i]\n\n"; } } elsif ($$f[0] == 4) { if ($fields[$i] =~ /"($$f[1])"\s*:/) { $jsonInterpreter .= "|$i $$f[0] $$f[2] $$f[3] $$f[1]"; Log3 $name,4,"$name: Property \"$$f[1]\" will be stored in $$f[2]"; $returnStr .= "Property \"$$f[1]\" will be extracted as reading '$$f[2]' from part $i:\n$fields[$i]\n\n"; } } elsif ($$f[0] == 6) { if ($fields[$i] =~ /"($$f[1])"\s*:/) { $jsonInterpreter .= "|$i $$f[0] $$f[2] $$f[3] $$f[1]"; Log3 $name,4,"$name: Property \"$$f[1]\" will be stored in $$f[2]"; $returnStr .= "Property \"$$f[1]\" will be extracted as reading '$$f[2]' from part $i:\n$fields[$i]\n\n"; } } } } if ($jsonInterpreter ne "") { Log3 $name, 3, "$name: Store results of JSON analysis for next device readings" if $alwaysAnalyse != 1; $jsonInterpreter = substr $jsonInterpreter, 1; $hash->{fhem}{jsonInterpreter} = $jsonInterpreter; } else { Log3 $name, 2, "$name: Could not interpret the JSON file => please contact FHEM community" if $jsonInterpreter eq ""; } } else { $jsonInterpreter = $hash->{fhem}{jsonInterpreter} if exists $hash->{fhem}{jsonInterpreter}; } #################################### # INTERPRETE AND STORE # use the previously filled jsonInterpreter to extract the correct values #################################### $returnStr .= "\n================= Extract JSON values ==================\n\n"; my @a = split /\|/, $jsonInterpreter; Log3 $name, 4, "$name: Extract ".($#a+1)." readings from ".($#fields+1)." json parts"; foreach (@a) { Log3 $name, 5, "$name: Handle $_"; my @b = split / /, $_ ; if ($b[1] == 1) { #obis value if ($fields[$b[0]] =~ /"value"\s*:\s*"(.*?)"\s*[,\}]/g || $fields[$b[0]] =~ /"value"\s*:\s*(.*?)\s*[,\}]/g) { $value = $1; # $value =~ s/^\s+|\s+$//g; Log3 $name, 4, "$name: Value $value for reading $b[2] extracted from '$fields[$b[0]]'"; $returnStr .= "Value \"$value\" for reading '$b[2]' extracted from part $b[0]:\n$fields[$b[0]]\n\n"; readingsBulkUpdate($hash,$b[2],$value); } else { Log3 $name, 4, "$name: Could not extract value for reading $b[2] from '$fields[$b[0]]'"; $returnStr .= "Could not extract value for reading '$b[2]' from part $b[0]:\n$fields[$b[0]]\n\n"; } } elsif ($b[1] == 2) { #obis valueString if ($fields[$b[0]] =~ /"valueString"\s*:\s*"(.*?)"\s*[,}]/g ) { $value = $1; Log3 $name, 4, "$name: Value $value for reading $b[2] extracted from '$fields[$b[0]]'"; $returnStr .= "Value \"$value\" for reading '$b[2]' extracted from part $b[0]:\n$fields[$b[0]]\n\n"; readingsBulkUpdate($hash,$b[2],$value); } else { Log3 $name, 4, "$name: Could not extract value for reading $b[2] from '$fields[$b[0]]'"; $returnStr .= "Could not extract value for reading '$b[2]' from part $b[0]:\n$fields[$b[0]]\n\n"; } } elsif ($b[1] == 3) { # JSON-Property if ($fields[$b[0]] =~ /"$b[4]"\s*:\s*"(.*?)"\s*[,}]/g || $fields[$b[0]] =~ /"$b[4]"\s*:\s*(.*?)\s*[,}]/g ) { $value = $1; $value =~ /^ *\d+(,\d\d\d)+/ && $value =~ s/,| //g; Log3 $name, 4, "$name: Value $value for reading $b[2] extracted from '$fields[$b[0]]'"; $returnStr .= "Value \"$value\" for reading '$b[2]' extracted from part $b[0]:\n$fields[$b[0]]\n\n"; readingsBulkUpdate($hash, $b[2], $value); } else { Log3 $name, 4, "$name: Could not extract value for reading $b[2] from '$fields[$b[0]]'"; $returnStr .= "Could not extract value for reading '$b[2]' from part $b[0]:\n$fields[$b[0]]\n\n"; } } elsif ($b[1] == 4) { # JSON-Property Time if ($fields[$b[0]] =~ /"$b[4]"\s*:\s"?(\d*)"?\s*[,}]/g ) { $value = $1; Log3 $name, 4, "$name: Value $value for reading $b[2] extracted from '$fields[$b[0]]'"; $returnStr .= "Value \"$value\" for reading '$b[2]' extracted from part $b[0]:\n$fields[$b[0]]\n\n"; $value = strftime "%Y-%m-%d %H:%M:%S", localtime($value); readingsBulkUpdate($hash, $b[2], $value); } else { Log3 $name, 4, "$name: Could not extract value for reading $b[2] from '$fields[$b[0]]'"; $returnStr .= "Could not extract value for reading '$b[2]' from part $b[0]:\n$fields[$b[0]]\n\n"; } } } readingsBulkUpdate($hash,"state","Connected"); readingsEndUpdate($hash,1); DoTrigger($hash->{NAME}, undef) if ($init_done); } else { readingsSingleUpdate($hash,"state",$a[2],1); } return encode_base64($returnStr); } sub ############################ JSONMETER_UpdateAborted($) { my ($hash) = @_; delete($hash->{helper}{RUNNING_PID}); my $name = $hash->{NAME}; my $host = $hash->{HOST}; Log3 $hash, 1, "$name Error: Timeout when connecting to host $host"; } # end JSONMETER_UpdateAborted 1; =pod =begin html

JSONMETER

    This module reads data from a measurement unit (so called smart meters for electricity, gas or heat)
    that provides OBIS compliant data in JSON format on a webserver or on the FHEM file system.
    It assumes normally, that the structur of the JSON data do not change.
     
    Define
      define <name> JSONMETER <deviceType> [<ip address>] [poll-interval]
      Example: define powermeter JSONMETER ITF 192.168.178.20 300
      If the pool interval is omitted, it is set to 300 (seconds). Smallest possible value is 10.
      With 0 it will only update on "manual" request.
       
    • <deviceType>
      Used to define the path and port to extract the json file.
      The attribute 'pathString' can be used to add login information to the URL-path of predefined devices.
       
      • ITF - One tariff electrical meter used by N-ENERGY (ITF Fröschl)
      • EFR - EFR Smart Grid Hub for electrical meter used by EON, N-ENERGY and EnBW
              use the 'pathstring' attribute to specifiy your login information
              attr pathString ?LogName=user&LogPSWD=password
      • LS110 - YouLess LS110 network sensor (counter) for electro mechanical electricity meter
      • url - use the URL defined via the attributes 'pathString' and 'port'
      • file - use the file defined via the attribute 'pathString' (positioned in the FHEM file system)

    Set
    • INTERVAL <polling interval>
      Polling interval in seconds

    • statusRequest
      Update device information

    • restartJsonAnalysis
      Restarts the analysis of the json file for known readings (compliant to the OBIS standard).
      This analysis happens normally only once if readings have been found.

    Get
    • jsonFile
      extracts and shows the json data

    • jsonAnalysis
      extracts the json data and shows the result of the analysis

    Attributes
    • alwaysAnalyse < 0 | 1 >
      Repeats by each update the json analysis - use if structure of json data changes
      Normally the once analysed structure is saved to reduce CPU load.

    • doStatistics < 0 | 1 >
      Calculates statistic values - not implemented yet

    • pathString <string>
      • if deviceType = 'file': specifies the local file name and path
      • if deviceType = 'url': specifies the url path
      • other deviceType: can be used to add login information to the url path of predefined devices

    • port <number>
      Specifies the IP port for the deviceType 'url' (default is 80)

    • readingFnAttributes
=end html =begin html_DE

JSONMETER

    Dieses Modul liest Daten von Messgeräten (z.B. Stromzähler, Gaszähler oder Wärmezähler, so genannte Smartmeter),
    welche OBIS kompatible Daten im JSON-Format auf einem Webserver oder auf dem FHEM-Dateisystem zur Verfügung stellen.
     
    Define
      define <name> JSONMETER <Gerätetyp> [<IP-Adresse>] [Abfrageinterval]
      Beispiel: define Stromzaehler JSONMETER ITF 192.168.178.20 300
      Wenn das Abfrage-Interval nicht angegeben ist, wird es auf 300 (Sekunden) gesetzt. Der kleinste mögliche Wert ist 30.
      Bei 0 kann die Geräteabfrage nur manuell gestartet werden.
       
    • Gerätetyp
      Definiert den Pfad und den Port, um die JSON-Datei zu einzulesen.
      Mit dem Attribute 'pathString' können Login Information an den URL-Pfad von vordefinierten Geräte angehangen werden.
      • ITF - Eintarifzähler von N-ENERGY Netz GmbH (ITF Fröschl)
      • EFR - Stromzähler von EON, N-ENERGY, EnBW
              Die Login-Information wird über das Attribute 'pathstring' angegeben.
              ?LogName=Benutzer&LogPSWD=Passwort
      • LS110 - YouLess LS110 Netzwerkfähiger Sensor für elektromechanische Stromzähler
      • url - benutzt die URL, welche durch das Attribut 'pathString' und 'port' definiert wird.
      • file - benutzt die Datei, welche durch das Attribut 'pathString' definiert wird (im FHEM Dateisystem)

    Set
    • alwaysAnalyse < 0 | 1 >
      Führt bei jeder Abfrage der Gerätewerte eine Analyse der JSON-Datenstruktur durch.
      Dies ist sinnvoll, wenn sich die JSON-Struktur ändert. Normalerweise wird die analysierte Struktur zwischengespeichert, um die CPU-Last gering zu halten.

    • INTERVAL <Abfrageinterval>
      Abfrageinterval in Sekunden

    • restartJsonAnalysis
      Neustart der Analyse der json-Datei zum Auffinden bekannter Gerätewerte (kompatibel zum OBIS Standard).
      Diese Analysie wird normaler Weise nur einmal durchgeführt, wenn Gerätewerte gefunden wurden.

    • statusRequest
      Aktualisieren der Gerätewerte

    Get
    • jsonFile
      Liest die JSON-Datei ein und zeigt sie an.

    • jsonAnalysis
      Extrahiert die JSON-Daten und zeigt das Resultat der JSON-Analyse.

    Attributes
    • doStatistics < 0 | 1 >
      Berechnet statistische Werte - noch nicht implementiert

    • pathString <Zeichenkette>
      • Gerätetyp 'file': definiert den lokalen Dateinamen und -pfad
      • Gerätetyp 'url': Definiert den URL-Pfad
      • Andere: Kann benutzt werden um Login-Information zum URL Pfad von vordefinerten Geräten hinzuzufügen

    • port <Nummer>
      Beim Gerätetyp 'url' kann hier der URL-Port festgelegt werden (standardmässig 80)

    • readingFnAttributes
=end html_DE =cut