Math: Triggering Lightscenes with EIS14
From bab-tec.de wiki
The eibPort lightscene can only handle EIS 1 telegrams and can be started with the value 0 or 1 (depends on the configuration). There are many demands to trigger lightscenes with an EIS 14 value (e.g. value 5 triggers scene 5).
This can be done with the Math job with this formula:
override_addr = (MAIN << 11) | (MIDDLE << 8) | eo(0); 1
MAIN and MIDDLE needs to be replaced with the main group and middle group the lightscene shall be triggered. So if I want to have 10 lightscenes which are triggered with the adresses 1/5/1-10 I'd insert 1 for MAIN and 5 for MIDDLE. The eo(0) is a variable for the first input of the job (with value 1-10). So the first part of this formula build the target group adress which is the trigger for the scene. The last 1 is just the value which will be sent to this address to trigger the scene.