-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[avmfritz] Added support for HAN-FUN Color and Dimmable bulbs #11723
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,8 +39,12 @@ thing-type.avmfritz.FRITZ_Powerline_546E_Solo.label = FRITZ!Powerline 546E | |
thing-type.avmfritz.FRITZ_Powerline_546E_Solo.description = A FRITZ!Powerline 546E with switchable outlet in stand-alone mode. | ||
thing-type.avmfritz.HAN_FUN_BLINDS.label = HAN-FUN Blinds | ||
thing-type.avmfritz.HAN_FUN_BLINDS.description = HAN-FUN blinds (e.g. RolloTron DECT 1213) | ||
thing-type.avmfritz.HAN_FUN_COLOR_BULB.label = HAN-FUN Color Light | ||
thing-type.avmfritz.HAN_FUN_COLOR_BULB.description = HAN-FUN color light (e.g SmartHome LED-Lampe E27 (farbig)). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. lamp |
||
thing-type.avmfritz.HAN_FUN_CONTACT.label = HAN-FUN Contact | ||
thing-type.avmfritz.HAN_FUN_CONTACT.description = HAN-FUN contact (e.g. SmartHome Tür-/Fensterkontakt or SmartHome Bewegungsmelder). | ||
thing-type.avmfritz.HAN_FUN_DIMMABLE_BULB.label = HAN-FUN Dimmable Light | ||
thing-type.avmfritz.HAN_FUN_DIMMABLE_BULB.description = HAN-FUN dimmable light (e.g. SmartHome LED-Lampe E27 (warmweiß)). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. lamp |
||
thing-type.avmfritz.HAN_FUN_ON_OFF.label = HAN-FUN On / Off Device | ||
thing-type.avmfritz.HAN_FUN_ON_OFF.description = HAN-FUN switchable device (e.g. SmartHome Zwischenstecker innen / SmartHome Zwischenstecker außen) | ||
thing-type.avmfritz.HAN_FUN_SWITCH.label = HAN-FUN Switch | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,6 @@ | |
<description>FRITZ!DECT500 color light.</description> | ||
|
||
<channels> | ||
<channel id="onoffstate" typeId="system.power"/> | ||
<channel id="brightness" typeId="system.brightness"/> | ||
<channel id="color" typeId="system.color"/> | ||
</channels> | ||
|
||
|
@@ -314,6 +312,41 @@ | |
<config-description-ref uri="thing-type:avmfritz:fritzdevice"/> | ||
</thing-type> | ||
|
||
<thing-type id="HAN_FUN_COLOR_BULB"> | ||
<supported-bridge-type-refs> | ||
<bridge-type-ref id="fritzbox"/> | ||
</supported-bridge-type-refs> | ||
|
||
<label>HAN-FUN Color Light</label> | ||
<description>HAN-FUN color light (e.g SmartHome LED-Lampe E27 (farbig)).</description> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. lamp |
||
|
||
<channels> | ||
<channel id="color" typeId="system.color"/> | ||
</channels> | ||
|
||
<representation-property>ain</representation-property> | ||
|
||
<config-description-ref uri="thing-type:avmfritz:fritzdevice"/> | ||
</thing-type> | ||
|
||
|
||
<thing-type id="HAN_FUN_DIMMABLE_BULB"> | ||
<supported-bridge-type-refs> | ||
<bridge-type-ref id="fritzbox"/> | ||
</supported-bridge-type-refs> | ||
|
||
<label>HAN-FUN Dimmable Light</label> | ||
<description>HAN-FUN dimmable light (e.g. SmartHome LED-Lampe E27 (warmweiß)).</description> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. lamp |
||
|
||
<channels> | ||
<channel id="brightness" typeId="system.brightness"/> | ||
</channels> | ||
|
||
<representation-property>ain</representation-property> | ||
|
||
<config-description-ref uri="thing-type:avmfritz:fritzdevice"/> | ||
</thing-type> | ||
|
||
<thing-type id="HAN_FUN_ON_OFF"> | ||
<supported-bridge-type-refs> | ||
<bridge-type-ref id="fritzbox"/> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lamp rather than lampe ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for pointing this out. If you check other description of HAN-FUN thing types, translations, etc. you will find more German product descriptions. This is by intention as it is the original product name of the device.
openhab-addons/bundles/org.openhab.binding.avmfritz/src/main/resources/OH-INF/thing/thing-types.xml
Line 264 in 78cc8fc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok