2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-13 17:26:34 +00:00

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
This commit is contained in:
raspii 2015-02-01 21:30:40 +00:00
parent f74beec8ae
commit fb2ca4812e

View File

@ -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;
}