mod-NUKI/74_NUKIDevice.pm

598 lines
19 KiB
Perl
Raw Normal View History

2016-09-27 11:37:19 +00:00
###############################################################################
#
# Developed with Kate
#
2017-01-17 05:18:25 +00:00
# (c) 2016-2017 Copyright: Marko Oldenburg (leongaultier at gmail dot com)
2016-09-27 11:37:19 +00:00
# All rights reserved
#
# 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
# 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 textfile 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.
#
#
# $Id$
#
###############################################################################
package main;
use strict;
use warnings;
use JSON;
2017-01-10 20:02:39 +00:00
2020-01-08 15:30:42 +00:00
my $version = "0.7.9";
2017-01-17 05:18:25 +00:00
# Declare functions
sub NUKIDevice_Initialize($);
sub NUKIDevice_Define($$);
sub NUKIDevice_Undef($$);
sub NUKIDevice_Attr(@);
sub NUKIDevice_Set($$@);
sub NUKIDevice_GetUpdate($);
sub NUKIDevice_ReadFromNUKIBridge($@);
sub NUKIDevice_Parse($$);
sub NUKIDevice_WriteReadings($$);
2016-09-27 11:37:19 +00:00
2020-01-08 12:26:22 +00:00
my %deviceTypes = (
0 => 'smartlock',
2 => 'opener'
);
my %deviceTypeIds = reverse(%deviceTypes);
2016-09-27 11:37:19 +00:00
sub NUKIDevice_Initialize($) {
my ($hash) = @_;
2020-01-08 12:26:22 +00:00
2020-01-08 15:30:42 +00:00
$hash->{Match} = '^{.*}$';
2016-09-27 11:37:19 +00:00
$hash->{SetFn} = "NUKIDevice_Set";
$hash->{DefFn} = "NUKIDevice_Define";
$hash->{UndefFn} = "NUKIDevice_Undef";
$hash->{AttrFn} = "NUKIDevice_Attr";
2020-01-08 12:26:22 +00:00
$hash->{ParseFn} = 'NUKIDevice_Parse';
2016-09-27 11:37:19 +00:00
$hash->{AttrList} = "IODev ".
2020-01-08 12:26:22 +00:00
"model:opener,smartlock ".
2016-09-27 11:37:19 +00:00
"disable:1 ".
$readingFnAttributes;
2016-09-27 11:37:19 +00:00
foreach my $d(sort keys %{$modules{NUKIDevice}{defptr}}) {
my $hash = $modules{NUKIDevice}{defptr}{$d};
$hash->{VERSION} = $version;
2016-09-27 11:37:19 +00:00
}
}
sub NUKIDevice_Define($$) {
my ( $hash, $def ) = @_;
2020-01-08 12:26:22 +00:00
my @a = split( '[ \t][ \t]*', $def );
2016-09-27 11:37:19 +00:00
2019-12-21 20:52:18 +00:00
return "too few parameters: define <name> NUKIDevice <nukiId> <deviceType>" if( @a < 2 );
2016-09-27 11:37:19 +00:00
2020-01-08 12:26:22 +00:00
my $name = $a[0];
my $nukiId = $a[2];
my $deviceType = (defined $a[3]) ? $a[3] : 0;
2016-09-27 11:37:19 +00:00
$hash->{NUKIID} = $nukiId;
2019-12-21 20:52:18 +00:00
$hash->{DEVICETYPE} = (defined $deviceType) ? $deviceType : 0;
$hash->{VERSION} = $version;
$hash->{STATE} = 'Initialized';
2020-01-08 12:26:22 +00:00
my $iodev = AttrVal( $name, 'IODev', 'none' );
AssignIoPort( $hash, $iodev ) if ( !$hash->{IODev} );
if ( defined( $hash->{IODev}->{NAME} ) ) {
Log3 $name, 3, "NUKIDevice ($name) - I/O device is "
. $hash->{IODev}->{NAME};
}
else {
2017-01-17 05:18:25 +00:00
Log3 $name, 1, "NUKIDevice ($name) - no I/O device";
2016-09-27 11:37:19 +00:00
}
2020-01-08 12:26:22 +00:00
2016-09-27 11:37:19 +00:00
$iodev = $hash->{IODev}->{NAME};
2020-01-08 12:26:22 +00:00
my $d = $modules{NUKIDevice}{defptr}{$nukiId};
2016-09-27 11:37:19 +00:00
2020-01-08 12:26:22 +00:00
return
"NUKIDevice device $name on GardenaSmartBridge $iodev already defined."
if ( defined($d)
and $d->{IODev} == $hash->{IODev}
and $d->{NAME} ne $name );
2016-09-27 11:37:19 +00:00
2020-01-08 12:26:22 +00:00
Log3 $name, 3, "NUKIDevice ($name) - defined with NukiId: $nukiId";
Log3 $name, 1, "NUKIDevice ($name) - reading battery a deprecated and will be remove in future";
2016-09-27 11:37:19 +00:00
2020-01-08 12:26:22 +00:00
CommandAttr(undef,$name . ' room NUKI')
if ( AttrVal($name,'room','none') eq 'none');
CommandAttr(undef,$name . ' model ' . $deviceTypes{$deviceType})
if ( AttrVal($name,'model','none') eq 'none');
if( $init_done ) {
InternalTimer( gettimeofday()+int(rand(10)), "NUKIDevice_GetUpdate", $hash, 0 );
} else {
InternalTimer( gettimeofday()+15+int(rand(5)), "NUKIDevice_GetUpdate", $hash, 0 );
}
2020-01-08 12:26:22 +00:00
$modules{NUKIDevice}{defptr}{$nukiId} = $hash;
2016-09-27 11:37:19 +00:00
return undef;
}
sub NUKIDevice_Undef($$) {
my ( $hash, $arg ) = @_;
my $nukiId = $hash->{NUKIID};
my $name = $hash->{NAME};
RemoveInternalTimer($hash);
2020-01-08 12:26:22 +00:00
Log3 $name, 3, "NUKIDevice ($name) - undefined with NukiId: $nukiId";
delete($modules{NUKIDevice}{defptr}{$nukiId});
2016-09-27 11:37:19 +00:00
return undef;
}
sub NUKIDevice_Attr(@) {
my ( $cmd, $name, $attrName, $attrVal ) = @_;
my $hash = $defs{$name};
my $token = $hash->{IODev}->{TOKEN};
2016-09-27 11:37:19 +00:00
if( $attrName eq "disable" ) {
if( $cmd eq "set" and $attrVal eq "1" ) {
readingsSingleUpdate ( $hash, "state", "disabled", 1 );
Log3 $name, 3, "NUKIDevice ($name) - disabled";
}
elsif( $cmd eq "del" ) {
readingsSingleUpdate ( $hash, "state", "active", 1 );
Log3 $name, 3, "NUKIDevice ($name) - enabled";
}
}
if( $attrName eq "disabledForIntervals" ) {
if( $cmd eq "set" ) {
Log3 $name, 3, "NUKIDevice ($name) - enable disabledForIntervals";
readingsSingleUpdate ( $hash, "state", "Unknown", 1 );
}
elsif( $cmd eq "del" ) {
readingsSingleUpdate ( $hash, "state", "active", 1 );
Log3 $name, 3, "NUKIDevice ($name) - delete disabledForIntervals";
}
}
2016-09-27 11:37:19 +00:00
return undef;
}
sub NUKIDevice_Set($$@) {
my ($hash, $name, @aa) = @_;
my ($cmd, @args) = @aa;
my $lockAction;
2016-09-27 11:37:19 +00:00
if( $cmd eq 'statusRequest' ) {
2016-09-27 11:37:19 +00:00
return "usage: statusRequest" if( @args != 0 );
NUKIDevice_GetUpdate($hash);
return undef;
2019-12-21 20:52:18 +00:00
} elsif( $cmd eq 'lock' or $cmd eq 'deactivateRto' ) {
$lockAction = $cmd;
2019-12-21 20:52:18 +00:00
} elsif( $cmd eq 'unlock' or $cmd eq 'activateRto' ) {
$lockAction = $cmd;
2019-12-21 20:52:18 +00:00
} elsif( $cmd eq 'unlatch' or $cmd eq 'electricStrikeActuation' ) {
$lockAction = $cmd;
2019-12-21 20:52:18 +00:00
} elsif( $cmd eq 'locknGo' or $cmd eq 'activateContinuousMode' ) {
$lockAction = $cmd;
2019-12-21 20:52:18 +00:00
} elsif( $cmd eq 'locknGoWithUnlatch' or $cmd eq 'deactivateContinuousMode' ) {
$lockAction = $cmd;
} elsif( $cmd eq 'unpair' ) {
2016-09-27 11:37:19 +00:00
2020-01-08 15:30:42 +00:00
# NUKIDevice_ReadFromNUKIBridge($hash,"$cmd",undef,$hash->{NUKIID},$hash->{DEVICETYPE} ) if( !IsDisabled($name) );
IOWrite($hash,"$cmd",undef,$hash->{NUKIID},$hash->{DEVICETYPE}) if( !IsDisabled($name) );
return undef;
2016-09-27 11:37:19 +00:00
} else {
2019-12-21 20:52:18 +00:00
my $list = '';
if ( $hash->{DEVICETYPE} == 0 ) {
$list= "statusRequest:noArg unlock:noArg lock:noArg unlatch:noArg locknGo:noArg locknGoWithUnlatch:noArg unpair:noArg";
} elsif ( $hash->{DEVICETYPE} == 2 ) {
$list= "statusRequest:noArg activateRto:noArg deactivateRto:noArg electricStrikeActuation:noArg activateContinuousMode:noArg deactivateContinuousMode:noArg unpair:noArg";
}
2016-09-27 11:37:19 +00:00
return "Unknown argument $cmd, choose one of $list";
}
$hash->{helper}{lockAction} = $lockAction;
2020-01-08 15:30:42 +00:00
IOWrite($hash,"lockAction",$lockAction,$hash->{NUKIID},$hash->{DEVICETYPE});
# NUKIDevice_ReadFromNUKIBridge($hash,"lockAction",$lockAction,$hash->{NUKIID},$hash->{DEVICETYPE} ) if( !IsDisabled($name) );
return undef;
}
2016-09-27 11:37:19 +00:00
sub NUKIDevice_GetUpdate($) {
my ($hash) = @_;
my $name = $hash->{NAME};
RemoveInternalTimer($hash);
2016-09-27 11:37:19 +00:00
2020-01-08 15:30:42 +00:00
# NUKIDevice_ReadFromNUKIBridge($hash, "lockState", undef, $hash->{NUKIID}, $hash->{DEVICETYPE} ) if( !IsDisabled($name) );
IOWrite($hash, "lockState", undef, $hash->{NUKIID}, $hash->{DEVICETYPE} ) if( !IsDisabled($name) );
Log3 $name, 5, "NUKIDevice ($name) - NUKIDevice_GetUpdate Call IOWrite" if( !IsDisabled($name) );
return undef;
}
2016-09-27 11:37:19 +00:00
sub NUKIDevice_ReadFromNUKIBridge($@) {
my ($hash,@a) = @_;
my $name = $hash->{NAME};
2016-12-11 13:38:58 +00:00
Log3 $name, 4, "NUKIDevice ($name) - NUKIDevice_ReadFromNUKIBridge check Bridge connected";
return "IODev $hash->{IODev} is not connected" if( ReadingsVal($hash->{IODev}->{NAME},"state","not connected") eq "not connected" );
2016-09-27 11:37:19 +00:00
no strict "refs";
my $ret;
unshift(@a,$name);
2016-12-11 13:38:58 +00:00
Log3 $name, 4, "NUKIDevice ($name) - NUKIDevice_ReadFromNUKIBridge Bridge is connected call IOWrite";
2016-09-27 11:37:19 +00:00
$ret = IOWrite($hash,$hash,@a);
use strict "refs";
return $ret;
return if(IsDummy($name) || IsIgnored($name));
my $iohash = $hash->{IODev};
if(!$iohash ||
!$iohash->{TYPE} ||
!$modules{$iohash->{TYPE}} ||
!$modules{$iohash->{TYPE}}{ReadFn}) {
2017-01-17 05:18:25 +00:00
Log3 $name, 3, "NUKIDevice ($name) - No I/O device or ReadFn found for $name";
2016-09-27 11:37:19 +00:00
return;
}
no strict "refs";
unshift(@a,$name);
$ret = &{$modules{$iohash->{TYPE}}{ReadFn}}($iohash, @a);
use strict "refs";
return $ret;
}
sub NUKIDevice_Parse($$) {
2016-09-27 11:37:19 +00:00
my($hash,$result) = @_;
2016-09-27 11:37:19 +00:00
my $name = $hash->{NAME};
2017-01-09 20:30:12 +00:00
Log3 $name, 5, "NUKIDevice ($name) - Parse with result: $result";
#########################################
####### Errorhandling #############
if( !$result ) {
Log3 $name, 3, "NUKIDevice ($name) - empty answer received";
return undef;
} elsif( $result =~ m'HTTP/1.1 200 OK' ) {
Log3 $name, 4, "NUKIDevice ($name) - empty answer received";
return undef;
} elsif( $result !~ m/^[\[{].*[}\]]$/ ) {
Log3 $name, 3, "NUKIDevice ($name) - invalid json detected: $result";
return "NUKIDevice ($name) - invalid json detected: $result";
}
if( $result =~ /\d{3}/ ) {
if( $result eq 400 ) {
readingsSingleUpdate( $hash, "state", "action is undefined", 1 );
Log3 $name, 3, "NUKIDevice ($name) - action is undefined";
return;
}
if( $result eq 404 ) {
readingsSingleUpdate( $hash, "state", "nukiId is not known", 1 );
Log3 $name, 3, "NUKIDevice ($name) - nukiId is not known";
return;
}
2017-01-17 05:18:25 +00:00
if( $result eq 503 ) {
readingsSingleUpdate( $hash, "state", "smartlock is offline", 1 );
Log3 $name, 3, "NUKIDevice ($name) - smartlock is offline";
2017-01-17 05:18:25 +00:00
return;
}
}
#########################################
#### verarbeiten des JSON Strings #######
my $decode_json = eval{decode_json($result)};
if($@){
Log3 $name, 3, "NUKIDevice ($name) - JSON error while request: $@";
return;
}
2016-09-27 11:37:19 +00:00
2016-09-27 11:37:19 +00:00
if( ref($decode_json) ne "HASH" ) {
Log3 $name, 2, "NUKIDevice ($name) - got wrong status message for $name: $decode_json";
2016-09-27 11:37:19 +00:00
return undef;
}
2020-01-08 12:26:22 +00:00
elsif ( defined( $decode_json->{nukiId} ) ) {
my $nukiId = $decode_json->{nukiId};
if ( my $hash = $modules{NUKIDevice}{defptr}{$nukiId} ) {
my $name = $hash->{NAME};
2020-01-08 15:30:42 +00:00
NUKIDevice_WriteReadings( $hash, $decode_json );
2020-01-08 12:26:22 +00:00
Log3 $name, 4,
"NUKIDevice ($name) - find logical device: $hash->{NAME}";
return $hash->{NAME};
}
else {
Log3 $name, 3,
"NUKIDevice ($name) - autocreate new device "
. makeDeviceName( $decode_json->{name} )
. " with nukiId $decode_json->{nukiId}, model $decode_json->{deviceType}";
return
"UNDEFINED "
. makeDeviceName( $decode_json->{name} )
. " NUKIDevice $decode_json->{nukiId} $decode_json->{deviceType}";
}
}
2016-09-27 11:37:19 +00:00
Log3 $name, 5, "NUKIDevice ($name) - parse status message for $name";
2016-09-27 11:37:19 +00:00
2020-01-08 15:30:42 +00:00
NUKIDevice_WriteReadings($hash,$decode_json);
}
sub NUKIDevice_WriteReadings($$) {
my ($hash,$decode_json) = @_;
my $name = $hash->{NAME};
2016-09-27 11:37:19 +00:00
2017-01-07 20:38:50 +00:00
2016-09-27 11:37:19 +00:00
############################
#### Status des Smartlock
my $battery;
if( defined($decode_json->{batteryCritical}) ) {
2016-12-21 10:24:16 +00:00
if( $decode_json->{batteryCritical} eq "false" or $decode_json->{batteryCritical} == 0 ) {
$battery = "ok";
2016-12-21 10:24:16 +00:00
} elsif ( $decode_json->{batteryCritical} eq "true" or $decode_json->{batteryCritical} == 1 ) {
$battery = "low";
}
}
2017-01-07 20:38:50 +00:00
readingsBeginUpdate($hash);
if( defined($hash->{helper}{lockAction}) ) {
my ($state,$lockState);
2017-01-07 08:31:09 +00:00
2017-05-15 10:33:41 +00:00
if( defined($decode_json->{success}) and ($decode_json->{success} eq "true" or $decode_json->{success} eq "1") ) {
2017-01-07 19:58:11 +00:00
2017-01-07 08:31:09 +00:00
$state = $hash->{helper}{lockAction};
$lockState = $hash->{helper}{lockAction};
2020-01-08 15:30:42 +00:00
# NUKIDevice_ReadFromNUKIBridge($hash, "lockState", undef, $hash->{NUKIID} ) if( ReadingsVal($hash->{IODev}->{NAME},'bridgeType','Software') eq 'Software' );
IOWrite($hash, "lockState", undef, $hash->{NUKIID} ) if( ReadingsVal($hash->{IODev}->{NAME},'bridgeType','Software') eq 'Software' );
2017-01-07 08:31:09 +00:00
2017-05-15 10:33:41 +00:00
} elsif ( defined($decode_json->{success}) and ($decode_json->{success} eq "false" or $decode_json->{success} eq "0") ) {
2017-01-07 08:31:09 +00:00
$state = "error";
2020-01-08 15:30:42 +00:00
# NUKIDevice_ReadFromNUKIBridge($hash, "lockState", undef, $hash->{NUKIID} );
IOWrite($hash, "lockState", undef, $hash->{NUKIID}, $hash->{DEVICETYPE} );
2017-01-07 08:31:09 +00:00
}
2017-01-07 20:38:50 +00:00
readingsBulkUpdate( $hash, "state", $state );
readingsBulkUpdate( $hash, "lockState", $lockState );
readingsBulkUpdate( $hash, "success", $decode_json->{success} );
2017-01-07 19:58:11 +00:00
delete $hash->{helper}{lockAction};
2017-01-07 19:58:11 +00:00
Log3 $name, 5, "NUKIDevice ($name) - lockAction readings set for $name";
2016-09-27 11:37:19 +00:00
} else {
readingsBulkUpdate( $hash, "batteryCritical", $decode_json->{batteryCritical} );
readingsBulkUpdate( $hash, "lockState", $decode_json->{stateName} );
readingsBulkUpdate( $hash, "state", $decode_json->{stateName} );
readingsBulkUpdate( $hash, "battery", $battery );
2018-06-01 20:33:48 +00:00
readingsBulkUpdate( $hash, "batteryState", $battery );
readingsBulkUpdate( $hash, "success", $decode_json->{success} );
2017-01-17 05:18:25 +00:00
readingsBulkUpdate( $hash, "name", $decode_json->{name} );
readingsBulkUpdate( $hash, "rssi", $decode_json->{rssi} );
readingsBulkUpdate( $hash, "paired", $decode_json->{paired} );
2016-09-27 11:37:19 +00:00
Log3 $name, 5, "NUKIDevice ($name) - readings set for $name";
}
2016-09-27 11:37:19 +00:00
readingsEndUpdate( $hash, 1 );
2016-09-27 11:37:19 +00:00
2017-01-07 20:38:50 +00:00
return undef;
2016-09-27 11:37:19 +00:00
}
2016-09-27 11:37:19 +00:00
1;
=pod
2016-10-10 10:14:16 +00:00
=item device
2016-10-22 15:00:29 +00:00
=item summary Modul to control the Nuki Smartlock's
2016-10-10 10:14:16 +00:00
=item summary_DE Modul zur Steuerung des Nuki Smartlocks.
2016-09-27 11:37:19 +00:00
=begin html
2016-10-10 10:14:16 +00:00
<a name="NUKIDevice"></a>
2016-09-27 11:37:19 +00:00
<h3>NUKIDevice</h3>
<ul>
2016-10-11 07:11:43 +00:00
<u><b>NUKIDevice - Controls the Nuki Smartlock</b></u>
<br>
2019-12-21 20:52:18 +00:00
The Nuki module connects FHEM over the Nuki Bridge with a Nuki Smartlock or Nuki Opener. After that, it´s possible to lock and unlock the Smartlock.<br>
2016-10-11 07:11:43 +00:00
Normally the Nuki devices are automatically created by the bridge module.
<br><br>
<a name="NUKIDevicedefine"></a>
<b>Define</b>
<ul><br>
2019-12-21 20:52:18 +00:00
<code>define &lt;name&gt; NUKIDevice &lt;Nuki-Id&gt; &lt;IODev-Device&gt; &lt;Device-Type&gt;</code>
<br><br>
Device-Type is 0 for the Smartlock and 2 for the Opener.
2016-10-11 07:11:43 +00:00
<br><br>
Example:
<ul><br>
2019-12-21 20:52:18 +00:00
<code>define Frontdoor NUKIDevice 1 NBridge1 0</code><br>
2016-10-11 07:11:43 +00:00
</ul>
<br>
This statement creates a NUKIDevice with the name Frontdoor, the NukiId 1 and the IODev device NBridge1.<br>
After the device has been created, the current state of the Smartlock is automatically read from the bridge.
</ul>
<br><br>
<a name="NUKIDevicereadings"></a>
<b>Readings</b>
<ul>
<li>state - Status of the Smartlock or error message if any error.</li>
<li>lockState - current lock status uncalibrated, locked, unlocked, unlocked (lock n go), unlatched, locking, unlocking, unlatching, motor blocked, undefined.</li>
<li>name - name of the device</li>
<li>paired - paired information false/true</li>
<li>rssi - value of rssi</li>
2016-10-11 07:11:43 +00:00
<li>succes - true, false Returns the status of the last closing command. Ok or not Ok.</li>
<li>batteryCritical - Is the battery in a critical state? True, false</li>
<li>batteryState - battery status, ok / low</li>
2016-10-11 07:11:43 +00:00
</ul>
<br><br>
<a name="NUKIDeviceset"></a>
<b>Set</b>
<ul>
<li>statusRequest - retrieves the current state of the smartlock from the bridge.</li>
<li>lock - lock</li>
<li>unlock - unlock</li>
<li>unlatch - unlock / open Door</li>
<li>unpair - Removes the pairing with a given Smart Lock</li>
2016-10-11 07:11:43 +00:00
<li>locknGo - lock when gone</li>
<li>locknGoWithUnlatch - lock after the door has been opened</li>
<br>
</ul>
<br><br>
<a name="NUKIDeviceattribut"></a>
<b>Attributes</b>
<ul>
<li>disable - disables the Nuki device</li>
<br>
</ul>
2016-09-27 11:37:19 +00:00
</ul>
=end html
=begin html_DE
2016-10-10 10:14:16 +00:00
<a name="NUKIDevice"></a>
2016-09-27 11:37:19 +00:00
<h3>NUKIDevice</h3>
<ul>
2016-10-10 10:14:16 +00:00
<u><b>NUKIDevice - Steuert das Nuki Smartlock</b></u>
<br>
2019-12-21 20:52:18 +00:00
Das Nuki Modul verbindet FHEM über die Nuki Bridge mit einem Nuki Smartlock oder Nuki Opener. Es ist dann m&ouml;glich das Schloss zu ver- und entriegeln.<br>
2016-10-10 10:14:16 +00:00
In der Regel werden die Nuki Devices automatisch durch das Bridgemodul angelegt.
<br><br>
<a name="NUKIDevicedefine"></a>
<b>Define</b>
<ul><br>
2019-12-21 20:52:18 +00:00
<code>define &lt;name&gt; NUKIDevice &lt;Nuki-Id&gt; &lt;IODev-Device&gt; &lt;Device-Type&gt;</code>
<br><br>
Device-Type ist 0 f&uuml;r das Smartlock und 2 f&üuml;r den Opener.
2016-10-10 10:14:16 +00:00
<br><br>
Beispiel:
<ul><br>
2019-12-21 20:52:18 +00:00
<code>define Haust&uuml;r NUKIDevice 1 NBridge1 0</code><br>
2016-10-10 10:14:16 +00:00
</ul>
<br>
Diese Anweisung erstellt ein NUKIDevice mit Namen Haust&uuml;r, der NukiId 1 sowie dem IODev Device NBridge1.<br>
Nach dem anlegen des Devices wird automatisch der aktuelle Zustand des Smartlocks aus der Bridge gelesen.
</ul>
<br><br>
<a name="NUKIDevicereadings"></a>
<b>Readings</b>
<ul>
<li>state - Status des Smartlock bzw. Fehlermeldung von Fehler vorhanden.</li>
<li>lockState - aktueller Schlie&szlig;status uncalibrated, locked, unlocked, unlocked (lock n go), unlatched, locking, unlocking, unlatching, motor blocked, undefined.</li>
<li>name - Name des Smart Locks</li>
<li>paired - pairing Status des Smart Locks</li>
<li>rssi - rssi Wert des Smart Locks</li>
2016-10-10 10:14:16 +00:00
<li>succes - true, false Gibt des Status des letzten Schlie&szlig;befehles wieder. Geklappt oder nicht geklappt.</li>
<li>batteryCritical - Ist die Batterie in einem kritischen Zustand? true, false</li>
<li>batteryState - Status der Batterie, ok/low</li>
2016-10-10 10:14:16 +00:00
</ul>
<br><br>
<a name="NUKIDeviceset"></a>
<b>Set</b>
<ul>
<li>statusRequest - ruft den aktuellen Status des Smartlocks von der Bridge ab.</li>
<li>lock - verschlie&szlig;en</li>
<li>unlock - aufschlie&szlig;en</li>
<li>unlatch - entriegeln/Falle &ouml;ffnen.</li>
<li>unpair - entfernt das pairing mit dem Smart Lock</li>
2016-10-10 10:14:16 +00:00
<li>locknGo - verschlie&szlig;en wenn gegangen</li>
<li>locknGoWithUnlatch - verschlie&szlig;en nach dem die Falle ge&ouml;ffnet wurde.</li>
<br>
</ul>
<br><br>
<a name="NUKIDeviceattribut"></a>
<b>Attribute</b>
<ul>
<li>disable - deaktiviert das Nuki Device</li>
<br>
</ul>
2016-09-27 11:37:19 +00:00
</ul>
=end html_DE
=cut