mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-07 22:29:19 +00:00
73_GardenaSmartBridge: change isconnected to isConnected
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@22957 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
cd614254d5
commit
afaa8ef55b
1
CHANGED
1
CHANGED
@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||||
# Do not insert empty lines here, update check depends on it.
|
# Do not insert empty lines here, update check depends on it.
|
||||||
|
- bugfix: 73_GardenaSmartBridge: change isconnected to isConnected
|
||||||
- feature: 76_SMAPortal: new attribute cookieDelete
|
- feature: 76_SMAPortal: new attribute cookieDelete
|
||||||
- feature: 32_withings: added ecg reading types for scanwatch
|
- feature: 32_withings: added ecg reading types for scanwatch
|
||||||
- change: 59_Twilight: get weather-dependend data by NotifyFn.
|
- change: 59_Twilight: get weather-dependend data by NotifyFn.
|
||||||
|
@ -879,7 +879,7 @@ sub WriteReadings {
|
|||||||
if ( ref( $v->{ip} ) ne 'HASH' );
|
if ( ref( $v->{ip} ) ne 'HASH' );
|
||||||
readingsBulkUpdateIfChanged( $hash,
|
readingsBulkUpdateIfChanged( $hash,
|
||||||
'ethernet_status-isconnected',
|
'ethernet_status-isconnected',
|
||||||
$v->{isconnected} );
|
$v->{isConnected} );
|
||||||
}
|
}
|
||||||
elsif ( $decode_json->{abilities}[0]{properties}
|
elsif ( $decode_json->{abilities}[0]{properties}
|
||||||
[$properties]{name} eq 'wifi_status' )
|
[$properties]{name} eq 'wifi_status' )
|
||||||
@ -892,7 +892,7 @@ sub WriteReadings {
|
|||||||
'wifi_status-ip', $v->{ip} )
|
'wifi_status-ip', $v->{ip} )
|
||||||
if ( ref( $v->{ip} ) ne 'HASH' );
|
if ( ref( $v->{ip} ) ne 'HASH' );
|
||||||
readingsBulkUpdateIfChanged( $hash,
|
readingsBulkUpdateIfChanged( $hash,
|
||||||
'wifi_status-isconnected', $v->{isconnected} );
|
'wifi_status-isconnected', $v->{isConnected} );
|
||||||
readingsBulkUpdateIfChanged( $hash,
|
readingsBulkUpdateIfChanged( $hash,
|
||||||
'wifi_status-signal', $v->{signal} );
|
'wifi_status-signal', $v->{signal} );
|
||||||
}
|
}
|
||||||
@ -1376,7 +1376,7 @@ sub DeletePassword {
|
|||||||
],
|
],
|
||||||
"release_status": "stable",
|
"release_status": "stable",
|
||||||
"license": "GPL_2",
|
"license": "GPL_2",
|
||||||
"version": "v2.0.2",
|
"version": "v2.0.3",
|
||||||
"author": [
|
"author": [
|
||||||
"Marko Oldenburg <leongaultier@gmail.com>"
|
"Marko Oldenburg <leongaultier@gmail.com>"
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user