From fb2ca4812e0f170d7f8425fbd41e4d31e889b93b Mon Sep 17 00:00:00 2001 From: raspii <> Date: Sun, 1 Feb 2015 21:30:40 +0000 Subject: [PATCH] 10_KOPP_FC.pm: changed command "K" to "k" to start a Kopp Command. ("K" was already used to handle raw data within CUL device) git-svn-id: https://svn.fhem.de/fhem/trunk@7828 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/contrib/10_KOPP_FC.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fhem/contrib/10_KOPP_FC.pm b/fhem/contrib/10_KOPP_FC.pm index 0ee12bb39..0104f5827 100644 --- a/fhem/contrib/10_KOPP_FC.pm +++ b/fhem/contrib/10_KOPP_FC.pm @@ -12,6 +12,7 @@ # # Date Who Comment # ---------- ------------- ------------------------------------------------------------------------------------------------------------------------------- +# 2015-02-01 Claus M. use small "k" to start Kopp FW, "K" was already used for raw data # 2014-12-21 Claus M. V6 (fits to my FHEM.cfg V6) Removed timeout from define command, will add later to set command (best guess yet). # 2014-12-13 Claus M. first version with command set: "on, off, toggle, dim, stop". Added new Parameter ("N" for do not print) # 2014-12-08 Claus M. direct usage of set command @ FHEM.cfg works fine, but buttoms on/off do not appear, seems to be a setup/initialize issue in this routine @@ -146,7 +147,7 @@ sub KOPP_FC_SendCommand($@) . "N"; # N for do not print messages (FHEM will write error messages to log files if CCD/CUL sends status info ## Send Message to IODev using IOWrite - IOWrite( $hash, "K", $message ); + IOWrite( $hash, "k", $message ); return $ret; }