Cheers again! That also did the trick.
Anyway my RGB color changes just work from FHEM.
Brightness, on/off and even color temperature for the 2 additional WW/CW-leds work fine within node-red.
Do you have any further ideas? Please find attached my complete flow including working switches / brighness controll and the non-working RGB logic.
Sorry to bother you with these beginner questions!
[{"id":"5dc3e86c.3246a8","type":"tab","label":"RGB...","disabled":false,"info":""},{"id":"91e8f0ea.63ee9","type":"deconz-output","z":"5dc3e86c.3246a8","name":"RGB_stripe: bri slider","server":"d261a0f2.dd789","device":"58:8e:81:ff:fe:e2:d6:08-01","device_name":"LED_stripe : Extended color light","command":"bri","commandType":"deconz_cmd","payload":"payload","payloadType":"msg","transitionTime":"","x":860,"y":120,"wires":[]},{"id":"84323554.1fa7e8","type":"deconz-input","z":"5dc3e86c.3246a8","name":"RGB_stripe","server":"d261a0f2.dd789","device":"58:8e:81:ff:fe:e2:d6:08-01","device_name":"LED_stripe : Extended color light","topic":"","state":"0","output":"always","outputAtStartup":true,"x":90,"y":120,"wires":[["2bbef0da.c5402","a80cd64d.069a48","9bc1c7f8.4a45a8"],["a8666c8b.5e30d"]]},{"id":"2bbef0da.c5402","type":"debug","z":"5dc3e86c.3246a8","name":"RGB_Stripe State output","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","x":270,"y":320,"wires":[]},{"id":"a8666c8b.5e30d","type":"debug","z":"5dc3e86c.3246a8","name":"RGB_stripe Homekit output","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","x":260,"y":360,"wires":[]},{"id":"1ec55ef6.2f5501","type":"ui_slider","z":"5dc3e86c.3246a8","name":"brightness slider","label":"RGB Helligkeit","tooltip":"","group":"db3115ee.3d0d58","order":2,"width":0,"height":0,"passthru":true,"outs":"end","topic":"","min":"1","max":"255","step":1,"x":580,"y":120,"wires":[["91e8f0ea.63ee9"]]},{"id":"6bc87841.1ee9e8","type":"deconz-output","z":"5dc3e86c.3246a8","name":"RGB_stripe: switch","server":"d261a0f2.dd789","device":"58:8e:81:ff:fe:e2:d6:08-01","device_name":"LED_stripe : Extended color light","command":"on","commandType":"deconz_cmd","payload":"payload","payloadType":"msg","transitionTime":"","x":850,"y":60,"wires":[]},{"id":"74c0806d.09185","type":"ui_switch","z":"5dc3e86c.3246a8","name":"Switch","label":"Schalter","tooltip":"","group":"db3115ee.3d0d58","order":1,"width":0,"height":0,"passthru":true,"decouple":"false","topic":"","style":"","onvalue":"true","onvalueType":"bool","onicon":"","oncolor":"","offvalue":"false","offvalueType":"bool","officon":"","offcolor":"","x":550,"y":60,"wires":[["6bc87841.1ee9e8"]]},{"id":"a80cd64d.069a48","type":"function","z":"5dc3e86c.3246a8","name":"Filter auf \"on\"","func":"var newMsg = { payload: msg.payload.on };\nreturn newMsg;","outputs":1,"noerr":0,"x":380,"y":60,"wires":[["74c0806d.09185"]]},{"id":"9bc1c7f8.4a45a8","type":"function","z":"5dc3e86c.3246a8","name":"Filter auf \"bri\"","func":"var newMsg = { payload: msg.payload.bri };\nreturn newMsg;","outputs":1,"noerr":0,"x":380,"y":120,"wires":[["1ec55ef6.2f5501"]]},{"id":"59ccb2f9.208b7c","type":"deconz-output","z":"5dc3e86c.3246a8","name":"RGB_stripe: Farbe","server":"d261a0f2.dd789","device":"58:8e:81:ff:fe:e2:d6:08-01","device_name":"LED_stripe : Extended color light","command":"xy","commandType":"deconz_cmd","payload":"payload.xy","payloadType":"msg","transitionTime":"","x":850,"y":180,"wires":[]},{"id":"114c0c60.c9d024","type":"ui_colour_picker","z":"5dc3e86c.3246a8","name":"","label":"","group":"db3115ee.3d0d58","format":"rgb","outformat":"object","showSwatch":true,"showPicker":false,"showValue":false,"showHue":false,"showAlpha":false,"showLightness":true,"square":"false","dynOutput":"false","order":0,"width":0,"height":0,"passthru":true,"topic":"","x":410,"y":180,"wires":[["dd7f5d72.a919f"]]},{"id":"dd7f5d72.a919f","type":"function","z":"5dc3e86c.3246a8","name":"RGB_CIE","func":"\nfunction rgb_to_cie(red, green, blue)\n{\n\t//Apply a gamma correction to the RGB values, which makes the color more vivid and more the like the color displayed on the screen of your device\n\tvar red \t= (red > 0.04045) ? Math.pow((red + 0.055) / (1.0 + 0.055), 2.4) : (red / 12.92);\n\tvar green \t= (green > 0.04045) ? Math.pow((green + 0.055) / (1.0 + 0.055), 2.4) : (green / 12.92);\n\tvar blue \t= (blue > 0.04045) ? Math.pow((blue + 0.055) / (1.0 + 0.055), 2.4) : (blue / 12.92); \n\n\t//RGB values to XYZ using the Wide RGB D65 conversion formula\n\tvar X \t\t= red * 0.664511 + green * 0.154324 + blue * 0.162028;\n\tvar Y \t\t= red * 0.283881 + green * 0.668433 + blue * 0.047685;\n\tvar Z \t\t= red * 0.000088 + green * 0.072310 + blue * 0.986039;\n\n\t//Calculate the xy values from the XYZ values\n\tvar x \t\t= (X / (X + Y + Z));\n\tvar y \t\t= (Y / (X + Y + Z));\n\n\tif (isNaN(x))\n\t\tx = 0;\n\tif (isNaN(y))\n\t\ty = 0;\t \n\treturn [x, y];\n}\n\nmsg.payload.xy = rgb_to_cie(msg.payload.r, msg.payload.g, msg.payload.b);\nconsole.log(msg.payload);\nreturn msg;\n\n\n","outputs":1,"noerr":0,"x":620,"y":180,"wires":[["b25e5efd.28759","59ccb2f9.208b7c"]]},{"id":"b25e5efd.28759","type":"debug","z":"5dc3e86c.3246a8","name":"Debug-output_RGB_CIE","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","x":870,"y":220,"wires":[]},{"id":"d261a0f2.dd789","type":"deconz-server","z":"","name":"Phoscon-GW","ip":"172.18.143.20","port":"80","apikey":"9EEA49359E","ws_port":"443","secure":false,"polling":"15"},{"id":"db3115ee.3d0d58","type":"ui_group","z":"","name":"Licht","tab":"d8bd116e.0c143","order":2,"disp":true,"width":"6","collapse":false},{"id":"d8bd116e.0c143","type":"ui_tab","z":"","name":"Home","icon":"dashboard","disabled":false,"hidden":false}]