Sorry, I'm French and my German is very poor, so I'll develop this post in English...
There is a bug in the model 1-107 for blinds, rolls, etc.
When one chose :
Not displaying the position ("kein Anzeige") should not prevent the user to select a position ("mit Positionsanfahrt")!
This is of much use when a module is used to control a group of blinds that are also controlled separately. There is not absolute position to display (each blind can have its own position! Which one to display? Their average position?), but there no reason to forbid a joint absolute positioning of all of them.
Hence, currently, with the above parameter the popup will never appear.
To fix the issue, edit the file C:\Users\Public\Documents\Gira\HS+FS Experte 4.11\quad\templates\data\1-107\template_1.xml
go to the from line 83
an remove the line 87
Brief explanation: this code apparently means that the popup will appear if ((type is 1) AND (style is not 0)) which is exactly what I consider as faulty. So I removed the second condition and it fixed the issue. Not very clean, but it works now.
BTW, if someone knows where to find documentation about this <logic> tag, I'm much interested. gira_template_doku.pdf does not say a single word about it.
There is a bug in the model 1-107 for blinds, rolls, etc.
When one chose :
- "Rollladen" as "Verhalten"
- "Tastsensorbetrieb mit Positionsanfahrt" as "Bedienung" (i.e. type = 1)
- "keine Anzeige" as "Statusanzeige" (i.e. style = 0)
Not displaying the position ("kein Anzeige") should not prevent the user to select a position ("mit Positionsanfahrt")!
This is of much use when a module is used to control a group of blinds that are also controlled separately. There is not absolute position to display (each blind can have its own position! Which one to display? Their average position?), but there no reason to forbid a joint absolute positioning of all of them.
Hence, currently, with the above parameter the popup will never appear.
To fix the issue, edit the file C:\Users\Public\Documents\Gira\HS+FS Experte 4.11\quad\templates\data\1-107\template_1.xml
go to the from line 83
Code:
<!--Logik für das Hand-Betrieb --> <logic id="logic_action_typ1" operation="and"> <slot id="logic_hand" inverse="true" /> <slot id="$par_type" compare="1"/> <slot id="$par_style" compare="0" inverse="true"/> </logic>
Code:
<slot id="$par_style" compare="0" inverse="true"/>
BTW, if someone knows where to find documentation about this <logic> tag, I'm much interested. gira_template_doku.pdf does not say a single word about it.
Kommentar