Merge pull request #4 from MrStrategy/interval_to_Attribute
extracted all response messages into methods, now setting N/A instead…
This commit is contained in:
commit
75f33f0144
@ -92,6 +92,7 @@ BEGIN {
|
|||||||
gettimeofday
|
gettimeofday
|
||||||
getUniqueId
|
getUniqueId
|
||||||
Attr
|
Attr
|
||||||
|
defs
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -119,7 +120,6 @@ my %sets = (
|
|||||||
pauseCharging => "",
|
pauseCharging => "",
|
||||||
resumeCharging => "",
|
resumeCharging => "",
|
||||||
toggleCharging => "",
|
toggleCharging => "",
|
||||||
interval => "",
|
|
||||||
refreshToken => "noArg",
|
refreshToken => "noArg",
|
||||||
cableLock => "true,false",
|
cableLock => "true,false",
|
||||||
reboot => "noArg",
|
reboot => "noArg",
|
||||||
@ -252,8 +252,6 @@ sub _GetCmdList {
|
|||||||
$retVal = $retVal . ":" . $myOpt
|
$retVal = $retVal . ":" . $myOpt
|
||||||
if ( defined($myOpt) and ( length($myOpt) > 0 ) );
|
if ( defined($myOpt) and ( length($myOpt) > 0 ) );
|
||||||
$myOpt = "" if ( !defined($myOpt) );
|
$myOpt = "" if ( !defined($myOpt) );
|
||||||
|
|
||||||
#Log3 ($name, 5, "parse cmd-table - Set:$mySet, Option:$myOpt, RetVal:$retVal");
|
|
||||||
}
|
}
|
||||||
if ( !defined($retVal) ) {
|
if ( !defined($retVal) ) {
|
||||||
return "error while parsing set-table";
|
return "error while parsing set-table";
|
||||||
@ -274,11 +272,11 @@ sub Initialize {
|
|||||||
|
|
||||||
$hash->{AttrList} =
|
$hash->{AttrList} =
|
||||||
'expertMode:yes,no '
|
'expertMode:yes,no '
|
||||||
. 'ledStuff:yes,no '
|
. 'interval '
|
||||||
. 'SmartCharging:true,false '
|
. 'SmartCharging:true,false '
|
||||||
. $readingFnAttributes;
|
. $readingFnAttributes;
|
||||||
|
|
||||||
#Log3, 'EaseeWallbox', 3, "EaseeWallbox module initialized.";
|
#Log3, 'EaseeWallbox', 2, "EaseeWallbox module initialized.";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -291,6 +289,7 @@ sub Define {
|
|||||||
$hash->{APIURI} = 'https://api.easee.cloud/api/';
|
$hash->{APIURI} = 'https://api.easee.cloud/api/';
|
||||||
Log3 $name, 3, "EaseeWallbox_Define $name: called ";
|
Log3 $name, 3, "EaseeWallbox_Define $name: called ";
|
||||||
my $errmsg = '';
|
my $errmsg = '';
|
||||||
|
|
||||||
# Check parameter(s) - Must be min 4 in total (counts strings not purly parameter, interval is optional)
|
# Check parameter(s) - Must be min 4 in total (counts strings not purly parameter, interval is optional)
|
||||||
if ( int(@param) < 4 ) {
|
if ( int(@param) < 4 ) {
|
||||||
$errmsg = return
|
$errmsg = return
|
||||||
@ -354,14 +353,13 @@ sub Define {
|
|||||||
#Initial load of data
|
#Initial load of data
|
||||||
WriteToCloudAPI( $hash, 'getChargers', 'GET' );
|
WriteToCloudAPI( $hash, 'getChargers', 'GET' );
|
||||||
|
|
||||||
Log3 $name, 1,
|
Log3 $name, 2,
|
||||||
sprintf( "EaseeWallbox_Define %s: Starting timer with interval %s",
|
sprintf( "EaseeWallbox_Define %s: Starting timer with interval %s",
|
||||||
$name, InternalVal( $name, 'INTERVAL', undef ) );
|
$name, InternalVal( $name, 'INTERVAL', undef ) );
|
||||||
InternalTimer( gettimeofday() + InternalVal( $name, 'INTERVAL', undef ),
|
InternalTimer( gettimeofday() + InternalVal( $name, 'INTERVAL', undef ),
|
||||||
"FHEM::EaseeWallbox::UpdateDueToTimer", $hash )
|
"FHEM::EaseeWallbox::UpdateDueToTimer", $hash )
|
||||||
if ( defined $hash );
|
if ( defined $hash );
|
||||||
|
|
||||||
## return; sollte es nicht geben, ein return; ist per see mit Rückgabe undef
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -408,7 +406,7 @@ sub Set {
|
|||||||
|
|
||||||
# Cascading if-elsif chain. See pages 117,118 of PBP (ControlStructures::ProhibitCascadingIfElse) kann man anders machen. Später machen wir das
|
# Cascading if-elsif chain. See pages 117,118 of PBP (ControlStructures::ProhibitCascadingIfElse) kann man anders machen. Später machen wir das
|
||||||
RemoveInternalTimer($hash);
|
RemoveInternalTimer($hash);
|
||||||
Log3 $name, 1,
|
Log3 $name, 3,
|
||||||
"EaseeWallbox_Set $name: Stopped the timer to automatically update readings";
|
"EaseeWallbox_Set $name: Stopped the timer to automatically update readings";
|
||||||
readingsSingleUpdate( $hash, 'state', 'Initialized', 0 );
|
readingsSingleUpdate( $hash, 'state', 'Initialized', 0 );
|
||||||
return;
|
return;
|
||||||
@ -423,21 +421,11 @@ sub Set {
|
|||||||
InternalTimer( gettimeofday() + InternalVal( $name, 'INTERVAL', undef ),
|
InternalTimer( gettimeofday() + InternalVal( $name, 'INTERVAL', undef ),
|
||||||
"FHEM::EaseeWallbox::UpdateDueToTimer", $hash );
|
"FHEM::EaseeWallbox::UpdateDueToTimer", $hash );
|
||||||
readingsSingleUpdate( $hash, 'state', 'Started', 0 );
|
readingsSingleUpdate( $hash, 'state', 'Started', 0 );
|
||||||
Log3 $name, 1,
|
Log3 $name, 3,
|
||||||
sprintf(
|
sprintf(
|
||||||
"EaseeWallbox_Set %s: Updated readings and started timer to automatically update readings with interval %s",
|
"EaseeWallbox_Set %s: Updated readings and started timer to automatically update readings with interval %s",
|
||||||
$name, InternalVal( $name, 'INTERVAL', undef ) );
|
$name, InternalVal( $name, 'INTERVAL', undef ) );
|
||||||
}
|
}
|
||||||
elsif ( $opt eq "interval" )
|
|
||||||
{ # interval wird immer über Attribut gesetzt. Also in die Funktion AttrFn aus Initialize
|
|
||||||
my $interval = shift @param;
|
|
||||||
|
|
||||||
$interval = 60 unless defined($interval);
|
|
||||||
if ( $interval < 5 ) { $interval = 5; }
|
|
||||||
|
|
||||||
Log3 $name, 1, "EaseeWallbox_Set $name: Set interval to" . $interval;
|
|
||||||
$hash->{INTERVAL} = $interval;
|
|
||||||
}
|
|
||||||
elsif ( $opt eq "cableLock" ) {
|
elsif ( $opt eq "cableLock" ) {
|
||||||
|
|
||||||
$message{'state'} = $value;
|
$message{'state'} = $value;
|
||||||
@ -516,7 +504,30 @@ sub Set {
|
|||||||
|
|
||||||
sub Attr {
|
sub Attr {
|
||||||
my ( $cmd, $name, $attrName, $attrVal ) = @_;
|
my ( $cmd, $name, $attrName, $attrVal ) = @_;
|
||||||
|
my $hash = $defs{$name};
|
||||||
|
|
||||||
|
if ( $attrName eq 'interval' ) {
|
||||||
|
if ( $cmd eq 'set' ) {
|
||||||
|
return 'Interval must be greater than 0'
|
||||||
|
if ( $attrVal == 0 );
|
||||||
|
RemoveInternalTimer( $hash,
|
||||||
|
"FHEM::EaseeWallbox::UpdateDueToTimer" );
|
||||||
|
$hash->{INTERVAL} = $attrVal;
|
||||||
|
InternalTimer( gettimeofday() + $hash->{INTERVAL},
|
||||||
|
"FHEM::EaseeWallbox::UpdateDueToTimer", $hash );
|
||||||
|
Log3 $name, 3,
|
||||||
|
"EaseeWallbox ($name) - set interval: $attrVal";
|
||||||
|
}
|
||||||
|
elsif ( $cmd eq 'del' ) {
|
||||||
|
RemoveInternalTimer( $hash,
|
||||||
|
"FHEM::EaseeWallbox::UpdateDueToTimer" );
|
||||||
|
$hash->{INTERVAL} = 60;
|
||||||
|
InternalTimer( gettimeofday() + $hash->{INTERVAL},
|
||||||
|
"FHEM::EaseeWallbox::UpdateDueToTimer", $hash );
|
||||||
|
Log3 $name, 3,
|
||||||
|
"EaseeWallbox ($name) - delete interval and set default: 60";
|
||||||
|
}
|
||||||
|
}
|
||||||
# hier kannst Du das setzen des Intervals umsetzen
|
# hier kannst Du das setzen des Intervals umsetzen
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -543,11 +554,9 @@ sub UpdateDueToTimer {
|
|||||||
if ( !$hash->{LOCAL} ) {
|
if ( !$hash->{LOCAL} ) {
|
||||||
RemoveInternalTimer($hash);
|
RemoveInternalTimer($hash);
|
||||||
|
|
||||||
#Log3 "Test", 1, Dumper($hash);
|
|
||||||
InternalTimer( gettimeofday() + InternalVal( $name, 'INTERVAL', undef ),
|
InternalTimer( gettimeofday() + InternalVal( $name, 'INTERVAL', undef ),
|
||||||
"FHEM::EaseeWallbox::UpdateDueToTimer", $hash );
|
"FHEM::EaseeWallbox::UpdateDueToTimer", $hash );
|
||||||
}
|
}
|
||||||
|
|
||||||
return RefreshData($hash);
|
return RefreshData($hash);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -638,7 +647,7 @@ sub ResponseHandling {
|
|||||||
|
|
||||||
if ( $err ne "" ) # wenn ein Fehler bei der HTTP Abfrage aufgetreten ist
|
if ( $err ne "" ) # wenn ein Fehler bei der HTTP Abfrage aufgetreten ist
|
||||||
{
|
{
|
||||||
Log3 $name, 3,
|
Log3 $name, 1,
|
||||||
"error while requesting "
|
"error while requesting "
|
||||||
. $param->{url}
|
. $param->{url}
|
||||||
. " - $err"; # Eintrag fürs Log
|
. " - $err"; # Eintrag fürs Log
|
||||||
@ -648,7 +657,7 @@ sub ResponseHandling {
|
|||||||
|
|
||||||
my $code = $param->{code};
|
my $code = $param->{code};
|
||||||
if ( $code == 404 and $param->{dpoint} eq 'getCurrentSession' )
|
if ( $code == 404 and $param->{dpoint} eq 'getCurrentSession' )
|
||||||
{ # Entweder == dann number z.B. 404 oder wenn eq dann String also '404'
|
{
|
||||||
readingsDelete( $hash, 'session_energy' );
|
readingsDelete( $hash, 'session_energy' );
|
||||||
readingsDelete( $hash, 'session_start' );
|
readingsDelete( $hash, 'session_start' );
|
||||||
readingsDelete( $hash, 'session_end' );
|
readingsDelete( $hash, 'session_end' );
|
||||||
@ -662,7 +671,7 @@ sub ResponseHandling {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( $code >= 400 ) {
|
if ( $code >= 400 ) {
|
||||||
Log3 $name, 3,
|
Log3 $name, 1,
|
||||||
"HTTPS error while requesting "
|
"HTTPS error while requesting "
|
||||||
. $param->{url}
|
. $param->{url}
|
||||||
. " - $code"; # Eintrag fürs Log
|
. " - $code"; # Eintrag fürs Log
|
||||||
@ -671,8 +680,8 @@ sub ResponseHandling {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Log3 $name, 3,
|
Log3 $name, 4,
|
||||||
"Received non-blocking data from EaseeWallbox regarding current session ";
|
"Received non-blocking data from EaseeWallbox.";
|
||||||
|
|
||||||
Log3 $name, 4, "FHEM -> EaseeWallbox: " . $param->{url};
|
Log3 $name, 4, "FHEM -> EaseeWallbox: " . $param->{url};
|
||||||
Log3 $name, 4, "FHEM -> EaseeWallbox: " . $param->{message}
|
Log3 $name, 4, "FHEM -> EaseeWallbox: " . $param->{message}
|
||||||
@ -680,21 +689,15 @@ sub ResponseHandling {
|
|||||||
Log3 $name, 4, "EaseeWallbox -> FHEM: " . $data;
|
Log3 $name, 4, "EaseeWallbox -> FHEM: " . $data;
|
||||||
Log3 $name, 5, '$err: ' . $err;
|
Log3 $name, 5, '$err: ' . $err;
|
||||||
Log3 $name, 5, "method: " . $param->{method};
|
Log3 $name, 5, "method: " . $param->{method};
|
||||||
Log3 $name, 2, "Something gone wrong"
|
|
||||||
if ( $data =~ "/EaseeWallboxMode/" );
|
|
||||||
|
|
||||||
my $decoded_json;
|
my $decoded_json;
|
||||||
|
|
||||||
eval { $decoded_json = decode_json($data) }; # statt eval ist es empfohlen catch try zu verwenden. Machen wir später
|
eval { $decoded_json = decode_json($data) }; # statt eval ist es empfohlen catch try zu verwenden. Machen wir später
|
||||||
if ($@) {
|
if ($@) {
|
||||||
Log3 $name, 3, "GardenaSmartBridge ($name) - JSON error while request";
|
Log3 $name, 3, "EaseeWallbox ($name) - JSON error while processing request";
|
||||||
}
|
}
|
||||||
|
|
||||||
Log3 $name, 5, 'Decoded: ' . Dumper($decoded_json);
|
Log3 $name, 5, 'Decoded: ' . Dumper($decoded_json);
|
||||||
Log3 $name, 5, 'Ref of d: ' . ref($decoded_json);
|
|
||||||
|
|
||||||
my $value;
|
my $value;
|
||||||
|
|
||||||
if ( defined $decoded_json
|
if ( defined $decoded_json
|
||||||
and $decoded_json ne ''
|
and $decoded_json ne ''
|
||||||
and ref($decoded_json) eq "HASH"
|
and ref($decoded_json) eq "HASH"
|
||||||
@ -713,41 +716,141 @@ sub ResponseHandling {
|
|||||||
# Und so weiter und so weiter mit den einzelnen Funktionen !!!
|
# Und so weiter und so weiter mit den einzelnen Funktionen !!!
|
||||||
|
|
||||||
if ( $param->{dpoint} eq 'getChargerSessionsMonthly' ) {
|
if ( $param->{dpoint} eq 'getChargerSessionsMonthly' ) {
|
||||||
Log3 $name, 5, 'Evaluating getChargerSessionsMonthly';
|
Processing_DpointGetChargerSessionsMonthly( $hash, $decoded_json );
|
||||||
my @x = $decoded_json;
|
|
||||||
my @a = ( -6 .. -1 );
|
|
||||||
readingsBeginUpdate($hash);
|
|
||||||
for (@a) {
|
|
||||||
Log3 $name, 5, 'laeuft noch: ' . $_;
|
|
||||||
readingsBulkUpdate(
|
|
||||||
$hash,
|
|
||||||
"monthly_" . ( $_ + 1 ) . "_energy",
|
|
||||||
sprintf(
|
|
||||||
"%.2f", $decoded_json->[$_]->{'totalEnergyUsage'}
|
|
||||||
)
|
|
||||||
);
|
|
||||||
readingsBulkUpdate(
|
|
||||||
$hash,
|
|
||||||
"monthly_" . ( $_ + 1 ) . "_cost",
|
|
||||||
sprintf( "%.2f", $decoded_json->[$_]->{'totalCost'} )
|
|
||||||
);
|
|
||||||
}
|
|
||||||
readingsEndUpdate( $hash, 1 );
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( $param->{dpoint} eq 'getChargerConfiguration' ) {
|
if ( $param->{dpoint} eq 'getChargerConfiguration' ) {
|
||||||
|
Processing_DpointGetChargerConfiguration( $hash, $decoded_json );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $param->{dpoint} eq 'getCurrentSession' ) {
|
||||||
|
Processing_DpointGetCurrentSession( $hash, $decoded_json );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $param->{dpoint} eq 'getChargerSite' ) {
|
||||||
|
Processing_DpointGetChargerSite( $hash, $decoded_json );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $param->{dpoint} eq 'getChargerState' ) {
|
||||||
|
Processing_DpointGetChargerState( $hash, $decoded_json );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$decoded_json = $decoded_json->[0] if ref($decoded_json) eq "ARRAY";
|
||||||
|
readingsSingleUpdate( $hash, "lastResponse",
|
||||||
|
'OK - Action: ' . $commandCodes{ $decoded_json->{commandId} }, 1 )
|
||||||
|
if defined $decoded_json->{commandId};
|
||||||
|
readingsSingleUpdate(
|
||||||
|
$hash,
|
||||||
|
"lastResponse",
|
||||||
|
'ERROR: '
|
||||||
|
. $decoded_json->{title} . ' ('
|
||||||
|
. $decoded_json->{status} . ')',
|
||||||
|
1
|
||||||
|
)
|
||||||
|
if defined $decoded_json->{status} and defined $decoded_json->{title};
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
readingsSingleUpdate( $hash, "lastResponse", 'OK - empty', 1 );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($@) {
|
||||||
|
readingsSingleUpdate( $hash, "lastResponse",
|
||||||
|
'ERROR while deconding response: ' . $@, 1 );
|
||||||
|
Log3 $name, 5, 'Failure decoding: ' . $@;
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub Processing_DpointGetCurrentSessionNotFound {
|
||||||
|
my $hash = shift;
|
||||||
|
my $decoded_json = shift;
|
||||||
|
|
||||||
|
my $name = $hash->{NAME};
|
||||||
|
readingsBeginUpdate($hash);
|
||||||
|
readingsBulkUpdate( $hash, 'session_energy', 'N/A' );
|
||||||
|
readingsBulkUpdate( $hash, 'session_start', 'N/A' );
|
||||||
|
readingsBulkUpdate( $hash, 'session_end', 'N/A' );
|
||||||
|
readingsBulkUpdate( $hash, 'session_chargeDurationInSeconds', 'N/A' );
|
||||||
|
readingsBulkUpdate( $hash, 'session_firstEnergyTransfer', 'N/A' );
|
||||||
|
readingsBulkUpdate( $hash, 'session_lastEnergyTransfer', 'N/A' );
|
||||||
|
readingsBulkUpdate( $hash, 'session_pricePerKWH', 'N/A' );
|
||||||
|
readingsBulkUpdate( $hash, 'session_chargingCost', 'N/A' );
|
||||||
|
readingsBulkUpdate( $hash, 'session_id', 'N/A' );
|
||||||
|
readingsEndUpdate( $hash, 1 );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
sub Processing_DpointGetChargerState {
|
||||||
|
my $hash = shift;
|
||||||
|
my $decoded_json = shift;
|
||||||
|
|
||||||
|
my $name = $hash->{NAME};
|
||||||
|
|
||||||
|
readingsBeginUpdate($hash);
|
||||||
|
readingsBulkUpdate( $hash, "operationModeCode",
|
||||||
|
$decoded_json->{chargerOpMode} );
|
||||||
|
readingsBulkUpdate( $hash, "operationMode",
|
||||||
|
$operationModes{ $decoded_json->{chargerOpMode} } );
|
||||||
|
readingsBulkUpdate( $hash, "power",
|
||||||
|
sprintf( "%.2f", $decoded_json->{totalPower} ) );
|
||||||
|
readingsBulkUpdate( $hash, "kWhInSession",
|
||||||
|
sprintf( "%.2f", $decoded_json->{sessionEnergy} ) );
|
||||||
|
readingsBulkUpdate( $hash, "phase", $decoded_json->{outputPhase} );
|
||||||
|
readingsBulkUpdate( $hash, "latestPulse",
|
||||||
|
_transcodeDate( $decoded_json->{latestPulse} ) );
|
||||||
|
readingsBulkUpdate( $hash, "current",
|
||||||
|
$decoded_json->{outputCurrent} );
|
||||||
|
readingsBulkUpdate( $hash, "dynamicCurrent",
|
||||||
|
$decoded_json->{dynamicChargerCurrent} );
|
||||||
|
readingsBulkUpdate( $hash, "reasonCodeForNoCurrent",
|
||||||
|
$decoded_json->{reasonForNoCurrent} );
|
||||||
|
readingsBulkUpdate( $hash, "reasonForNoCurrent",
|
||||||
|
$reasonsForNoCurrent{ $decoded_json->{reasonForNoCurrent} } );
|
||||||
|
readingsBulkUpdate( $hash, "errorCode",
|
||||||
|
$decoded_json->{errorCode} );
|
||||||
|
readingsBulkUpdate( $hash, "fatalErrorCode",
|
||||||
|
$decoded_json->{fatalErrorCode} );
|
||||||
|
readingsBulkUpdate( $hash, "lifetimeEnergy",
|
||||||
|
sprintf( "%.2f", $decoded_json->{lifetimeEnergy} ) );
|
||||||
|
readingsBulkUpdate( $hash, "online",
|
||||||
|
NumericToBoolean($decoded_json->{isOnline} ));
|
||||||
|
readingsBulkUpdate( $hash, "voltage",
|
||||||
|
sprintf( "%.2f", $decoded_json->{voltage} ) );
|
||||||
|
readingsBulkUpdate( $hash, "wifi_rssi", $decoded_json->{wiFiRSSI} );
|
||||||
|
readingsBulkUpdate( $hash, "wifi_apEnabled",
|
||||||
|
NumericToBoolean($decoded_json->{wiFiAPEnabled} ));
|
||||||
|
readingsBulkUpdate( $hash, "cell_rssi", $decoded_json->{cellRSSI} );
|
||||||
|
readingsBulkUpdate( $hash, "lastResponse",
|
||||||
|
'OK - getChargerState', 1 );
|
||||||
|
readingsEndUpdate( $hash, 1 );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub Processing_DpointGetChargerConfiguration {
|
||||||
|
my $hash = shift;
|
||||||
|
my $decoded_json = shift;
|
||||||
|
|
||||||
|
my $name = $hash->{NAME};
|
||||||
readingsBeginUpdate($hash);
|
readingsBeginUpdate($hash);
|
||||||
readingsBulkUpdate( $hash, "isEnabled",
|
readingsBulkUpdate( $hash, "isEnabled",
|
||||||
$decoded_json->{isEnabled} );
|
NumericToBoolean($decoded_json->{isEnabled} ));
|
||||||
readingsBulkUpdate( $hash, "isCablePermanentlyLocked",
|
readingsBulkUpdate( $hash, "isCablePermanentlyLocked",
|
||||||
$decoded_json->{lockCablePermanently} );
|
NumericToBoolean($decoded_json->{lockCablePermanently} ));
|
||||||
readingsBulkUpdate( $hash, "isAuthorizationRequired",
|
readingsBulkUpdate( $hash, "isAuthorizationRequired",
|
||||||
$decoded_json->{authorizationRequired} );
|
NumericToBoolean($decoded_json->{authorizationRequired}) );
|
||||||
readingsBulkUpdate( $hash, "isRemoteStartRequired",
|
readingsBulkUpdate( $hash, "isRemoteStartRequired",
|
||||||
$decoded_json->{remoteStartRequired} );
|
NumericToBoolean($decoded_json->{remoteStartRequired}) );
|
||||||
readingsBulkUpdate( $hash, "isSmartButtonEnabled",
|
readingsBulkUpdate( $hash, "isSmartButtonEnabled",
|
||||||
$decoded_json->{smartButtonEnabled} );
|
NumericToBoolean($decoded_json->{smartButtonEnabled}) );
|
||||||
readingsBulkUpdate( $hash, "wiFiSSID", $decoded_json->{wiFiSSID} );
|
readingsBulkUpdate( $hash, "wiFiSSID", $decoded_json->{wiFiSSID} );
|
||||||
readingsBulkUpdate( $hash, "phaseModeId",
|
readingsBulkUpdate( $hash, "phaseModeId",
|
||||||
$decoded_json->{phaseMode} );
|
$decoded_json->{phaseMode} );
|
||||||
@ -756,8 +859,8 @@ sub ResponseHandling {
|
|||||||
readingsBulkUpdate(
|
readingsBulkUpdate(
|
||||||
$hash,
|
$hash,
|
||||||
"isLocalAuthorizationRequired",
|
"isLocalAuthorizationRequired",
|
||||||
$decoded_json->{localAuthorizationRequired}
|
NumericToBoolean($decoded_json->{localAuthorizationRequired}
|
||||||
);
|
));
|
||||||
readingsBulkUpdate( $hash, "maxChargerCurrent",
|
readingsBulkUpdate( $hash, "maxChargerCurrent",
|
||||||
$decoded_json->{maxChargerCurrent} );
|
$decoded_json->{maxChargerCurrent} );
|
||||||
readingsBulkUpdate( $hash, "ledStripBrightness",
|
readingsBulkUpdate( $hash, "ledStripBrightness",
|
||||||
@ -807,13 +910,18 @@ sub ResponseHandling {
|
|||||||
'OK - getChargerConfig', 1 );
|
'OK - getChargerConfig', 1 );
|
||||||
readingsEndUpdate( $hash, 1 );
|
readingsEndUpdate( $hash, 1 );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub Processing_DpointGetCurrentSession {
|
||||||
|
my $hash = shift;
|
||||||
|
my $decoded_json = shift;
|
||||||
|
|
||||||
|
my $name = $hash->{NAME};
|
||||||
|
|
||||||
if ( $param->{dpoint} eq 'getCurrentSession' ) {
|
|
||||||
readingsBeginUpdate($hash);
|
readingsBeginUpdate($hash);
|
||||||
readingsBulkUpdate( $hash, "session_energy",
|
readingsBulkUpdate( $hash, "session_energy",
|
||||||
sprintf( "%.2f", $decoded_json->{sessionEnergy} ) );
|
sprintf( "%.2f", $decoded_json->{sessionEnergy} ) );
|
||||||
$value =
|
my $value =
|
||||||
defined $decoded_json->{sessionStart}
|
defined $decoded_json->{sessionStart}
|
||||||
? _transcodeDate( $decoded_json->{sessionStart} )
|
? _transcodeDate( $decoded_json->{sessionStart} )
|
||||||
: 'N/A';
|
: 'N/A';
|
||||||
@ -849,9 +957,13 @@ sub ResponseHandling {
|
|||||||
'OK - getCurrentSession', 1 );
|
'OK - getCurrentSession', 1 );
|
||||||
readingsEndUpdate( $hash, 1 );
|
readingsEndUpdate( $hash, 1 );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( $param->{dpoint} eq 'getChargerSite' ) {
|
sub Processing_DpointGetChargerSite {
|
||||||
|
my $hash = shift;
|
||||||
|
my $decoded_json = shift;
|
||||||
|
|
||||||
|
my $name = $hash->{NAME};
|
||||||
readingsBeginUpdate($hash);
|
readingsBeginUpdate($hash);
|
||||||
readingsBulkUpdate( $hash, "cost_perKWh",
|
readingsBulkUpdate( $hash, "cost_perKWh",
|
||||||
$decoded_json->{costPerKWh} );
|
$decoded_json->{costPerKWh} );
|
||||||
@ -861,81 +973,12 @@ sub ResponseHandling {
|
|||||||
readingsBulkUpdate( $hash, "cost_currency",
|
readingsBulkUpdate( $hash, "cost_currency",
|
||||||
$decoded_json->{currencyId} );
|
$decoded_json->{currencyId} );
|
||||||
|
|
||||||
#readingsBulkUpdate( $hash, "site_ratedCurrent", $decoded_json->{ratedCurrent} );
|
#readingsBulkUpdate( $hash, "site_ratedCurrent", $decoded_json->{ratedCurrent} );
|
||||||
#readingsBulkUpdate( $hash, "site_createdOn", $decoded_json->{createdOn} );
|
#readingsBulkUpdate( $hash, "site_createdOn", $decoded_json->{createdOn} );
|
||||||
#readingsBulkUpdate( $hash, "site_updatedOn", $decoded_json->{updatedOn} );
|
#readingsBulkUpdate( $hash, "site_updatedOn", $decoded_json->{updatedOn} );
|
||||||
readingsBulkUpdate( $hash, "lastResponse",
|
readingsBulkUpdate( $hash, "lastResponse",
|
||||||
'OK - getChargerSite', 1 );
|
'OK - getChargerSite', 1 );
|
||||||
readingsEndUpdate( $hash, 1 );
|
readingsEndUpdate( $hash, 1 );
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( $param->{dpoint} eq 'getChargerState' ) {
|
|
||||||
readingsBeginUpdate($hash);
|
|
||||||
readingsBulkUpdate( $hash, "operationModeCode",
|
|
||||||
$decoded_json->{chargerOpMode} );
|
|
||||||
readingsBulkUpdate( $hash, "operationMode",
|
|
||||||
$operationModes{ $decoded_json->{chargerOpMode} } );
|
|
||||||
readingsBulkUpdate( $hash, "power",
|
|
||||||
sprintf( "%.2f", $decoded_json->{totalPower} ) );
|
|
||||||
readingsBulkUpdate( $hash, "kWhInSession",
|
|
||||||
sprintf( "%.2f", $decoded_json->{sessionEnergy} ) );
|
|
||||||
readingsBulkUpdate( $hash, "phase", $decoded_json->{outputPhase} );
|
|
||||||
readingsBulkUpdate( $hash, "latestPulse",
|
|
||||||
_transcodeDate( $decoded_json->{latestPulse} ) );
|
|
||||||
readingsBulkUpdate( $hash, "current",
|
|
||||||
$decoded_json->{outputCurrent} );
|
|
||||||
readingsBulkUpdate( $hash, "dynamicCurrent",
|
|
||||||
$decoded_json->{dynamicChargerCurrent} );
|
|
||||||
readingsBulkUpdate( $hash, "reasonCodeForNoCurrent",
|
|
||||||
$decoded_json->{reasonForNoCurrent} );
|
|
||||||
readingsBulkUpdate( $hash, "reasonForNoCurrent",
|
|
||||||
$reasonsForNoCurrent{ $decoded_json->{reasonForNoCurrent} } );
|
|
||||||
readingsBulkUpdate( $hash, "errorCode",
|
|
||||||
$decoded_json->{errorCode} );
|
|
||||||
readingsBulkUpdate( $hash, "fatalErrorCode",
|
|
||||||
$decoded_json->{fatalErrorCode} );
|
|
||||||
readingsBulkUpdate( $hash, "lifetimeEnergy",
|
|
||||||
sprintf( "%.2f", $decoded_json->{lifetimeEnergy} ) );
|
|
||||||
readingsBulkUpdate( $hash, "online", $decoded_json->{isOnline} );
|
|
||||||
readingsBulkUpdate( $hash, "voltage",
|
|
||||||
sprintf( "%.2f", $decoded_json->{voltage} ) );
|
|
||||||
readingsBulkUpdate( $hash, "wifi_rssi", $decoded_json->{wiFiRSSI} );
|
|
||||||
readingsBulkUpdate( $hash, "wifi_apEnabled",
|
|
||||||
$decoded_json->{wiFiAPEnabled} );
|
|
||||||
readingsBulkUpdate( $hash, "cell_rssi", $decoded_json->{cellRSSI} );
|
|
||||||
readingsBulkUpdate( $hash, "lastResponse",
|
|
||||||
'OK - getChargerState', 1 );
|
|
||||||
readingsEndUpdate( $hash, 1 );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$decoded_json = $decoded_json->[0] if ref($decoded_json) eq "ARRAY";
|
|
||||||
readingsSingleUpdate( $hash, "lastResponse",
|
|
||||||
'OK - Action: ' . $commandCodes{ $decoded_json->{commandId} }, 1 )
|
|
||||||
if defined $decoded_json->{commandId};
|
|
||||||
readingsSingleUpdate(
|
|
||||||
$hash,
|
|
||||||
"lastResponse",
|
|
||||||
'ERROR: '
|
|
||||||
. $decoded_json->{title} . ' ('
|
|
||||||
. $decoded_json->{status} . ')',
|
|
||||||
1
|
|
||||||
)
|
|
||||||
if defined $decoded_json->{status} and defined $decoded_json->{title};
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
readingsSingleUpdate( $hash, "lastResponse", 'OK - empty', 1 );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($@) {
|
|
||||||
readingsSingleUpdate( $hash, "lastResponse",
|
|
||||||
'ERROR while deconding response: ' . $@, 1 );
|
|
||||||
Log3 $name, 5, 'Failure decoding: ' . $@;
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -992,6 +1035,37 @@ sub Processing_DpointGetChargerSessionsDaily {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub Processing_DpointGetChargerSessionsMonthly {
|
||||||
|
my $hash = shift;
|
||||||
|
my $decoded_json = shift;
|
||||||
|
|
||||||
|
my $name = $hash->{NAME};
|
||||||
|
|
||||||
|
Log3 $name, 4, 'Evaluating getChargerSessionsMonthly';
|
||||||
|
|
||||||
|
my @x = $decoded_json;
|
||||||
|
my @a = ( -6 .. -1 );
|
||||||
|
|
||||||
|
readingsBeginUpdate($hash);
|
||||||
|
for (@a) {
|
||||||
|
Log3 $name, 5, 'laeuft noch: ' . $_;
|
||||||
|
readingsBulkUpdate(
|
||||||
|
$hash,
|
||||||
|
"monthly_" . ( $_ + 1 ) . "_energy",
|
||||||
|
sprintf(
|
||||||
|
"%.2f", $decoded_json->[$_]->{'totalEnergyUsage'}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
readingsBulkUpdate(
|
||||||
|
$hash,
|
||||||
|
"monthly_" . ( $_ + 1 ) . "_cost",
|
||||||
|
sprintf( "%.2f", $decoded_json->[$_]->{'totalCost'} )
|
||||||
|
);
|
||||||
|
}
|
||||||
|
readingsEndUpdate( $hash, 1 );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
sub _loadToken {
|
sub _loadToken {
|
||||||
my $hash = shift;
|
my $hash = shift;
|
||||||
my $name = $hash->{NAME};
|
my $name = $hash->{NAME};
|
||||||
@ -1087,8 +1161,6 @@ sub _newTokenRequest {
|
|||||||
"EaseeWallbox $name" . ": "
|
"EaseeWallbox $name" . ": "
|
||||||
. "Retrived new authentication token successfully. Valid until "
|
. "Retrived new authentication token successfully. Valid until "
|
||||||
. localtime( $hash->{TOKEN_LIFETIME} );
|
. localtime( $hash->{TOKEN_LIFETIME} );
|
||||||
|
|
||||||
# $hash->{STATE} = "reachable"; # niemals $hash->{STATE} über demn Hash direkt zuweisen
|
|
||||||
readingsSingleUpdate( $hash, 'state', 'reachable', 1 );
|
readingsSingleUpdate( $hash, 'state', 'reachable', 1 );
|
||||||
return $decoded_data;
|
return $decoded_data;
|
||||||
}
|
}
|
||||||
@ -1229,6 +1301,11 @@ sub _transcodeDate {
|
|||||||
return $dt->strftime('%Y-%m-%d %H:%M:%S');
|
return $dt->strftime('%Y-%m-%d %H:%M:%S');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub NumericToBoolean {
|
||||||
|
my $number = shift;
|
||||||
|
return $number == 0 ? 'false' : 'true';
|
||||||
|
}
|
||||||
|
|
||||||
1; # Ein Modul muss immer mit 1; enden
|
1; # Ein Modul muss immer mit 1; enden
|
||||||
|
|
||||||
=pod
|
=pod
|
||||||
|
Loading…
Reference in New Issue
Block a user