2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 04:36:36 +00:00

30_HUEBridge.pm: use new modifyscene api for firmware versions >1.11

git-svn-id: https://svn.fhem.de/fhem/trunk@16173 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2018-02-14 06:25:32 +00:00
parent bba7e3ffaa
commit 4a35503b21

View File

@ -632,7 +632,11 @@ HUEBridge_Set($@)
HUEDevice_SetParam(undef, \%obj, $cmd, $value, $value2);
}
my $result = HUEBridge_Call($hash, undef, "scenes/$arg/lights/$light/state", \%obj, 'PUT');
my $result;
if( $hash->{helper}{apiversion} && $hash->{helper}{apiversion} >= (1<<16) + (11<<8) ) {
$result = HUEBridge_Call($hash, undef, "scenes/$arg/lights/$light/state", \%obj, 'PUT');
else
$result = HUEBridge_Call($hash, undef, "scenes/$arg/lightstates/$light", \%obj, 'PUT');
return $result->{error}{description} if( $result->{error} );
return undef;