]> git.basschouten.com Git - openhab-addons.git/commitdiff
Channel types: UPERCASE and typo (#8989)
authordrohhyn <drohhyn@users.noreply.github.com>
Fri, 20 Nov 2020 07:35:59 +0000 (08:35 +0100)
committerGitHub <noreply@github.com>
Fri, 20 Nov 2020 07:35:59 +0000 (08:35 +0100)
https://community.openhab.org/t/solved-homematic-channel-type-couldn-t-be-resolved/47950/6 shows the solution with UPPERCASE channel name.
Signed-off-by: drohhyn <drohhyn@qimp.org>
bundles/org.openhab.binding.homematic/README.md

index e32bf65aa0b554d9aa62848c9e06de6c0d4d6ad7..cc6e2060da187245329f7b36ec5b34898ca6c463 100644 (file)
@@ -256,15 +256,15 @@ The disadvantage is of course, that all events for this channel are delayed.
 ```java
   Thing HM-LC-Dim1T-Pl-2    JEQ0999999 "Name"  @  "Location" {
       Channels:
-          Type HM-LC-Dim1T-Pl-2_1_level : 1#LEVEL [
+          Type HM-LC-Dim1T-Pl-2_1_LEVEL : 1#LEVEL [
               delay = 0,
               receiveDelay = 4
           ]
   }
 ```
 
-The `Type` is the device type, channel number and lowercase channel name separated with an underscore.
-Note that, for Homegear devices, in contrast to the specification of the Rhing above no `HG-` prefix is needed for the specification of the Type of the Channel.
+The `Type` is the device type, channel number and UPPERCASE channel name separated with an underscore.
+Note that, for Homegear devices, in contrast to the specification of the Thing above no `HG-` prefix is needed for the specification of the Type of the Channel.
 
 The channel configs are optional.