From 0d4e62d1c649e55acaab09420c02b72686f2376e Mon Sep 17 00:00:00 2001 From: vuffiraa <> Date: Wed, 22 Nov 2017 21:18:34 +0000 Subject: [PATCH] 70_BRAVIA.pm: set remoteControl supports command codes git-svn-id: https://svn.fhem.de/fhem/trunk@15479 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/70_BRAVIA.pm | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/fhem/CHANGED b/fhem/CHANGED index 21fb99ace..e653112de 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # 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. + - change: 70_BRAVIA: set remoteControl supports command codes - change: 98_dewpoint: Consolidated and corrected formulas for dewpoint (Forum #78359) - fix: 00_SIGNALduino: Fix Bresser Sensor and perl sensor diff --git a/fhem/FHEM/70_BRAVIA.pm b/fhem/FHEM/70_BRAVIA.pm index 060aa74ed..6af1bed63 100644 --- a/fhem/FHEM/70_BRAVIA.pm +++ b/fhem/FHEM/70_BRAVIA.pm @@ -1788,7 +1788,8 @@ sub BRAVIA_GetRemotecontrolCommand($) { return $commands; } else { - return ""; + # return command itself if not mapped + return $command; } }