Afternoon All Further to my last post, i am still trying to find a way to control a 2 cable blind from a normal volt free relay pot EG the kids bedroom blind Close Cable is connected to Port 1 and the Open Cable is connected to Port 2 I have created this in the logic engine of the touchpanels... will it work once (GetCBusState("narrow lane farm", "Trigger Control", "Kids Bedroom blinds") = ON) and (GetLightingState("Kids Bed C Blind 1") = OFF) and (GetLightingState("Kids Bed C Blind 2") = OFF) then begin SetLightingState("Kids Bed C Blind 1", ON); end; once (GetCBusState("narrow lane farm", "Trigger Control", "Kids Bedroom blinds") = ON) and (GetLightingState("Kids Bed C Blind 1") = ON) then begin SetLightingState("Kids Bed C Blind 1", OFF); Delay("0:00:01"); SetLightingState("Kids Bed C Blind 2", ON); end; once (GetCBusState("narrow lane farm", "Trigger Control", "Kids Bedroom blinds") = ON) and (GetLightingState("Kids Bed C Blind 2") = ON) then begin SetLightingState("Kids Bed C Blind 2", OFF); Delay("0:00:01"); SetLightingState("Landing Corner Blind 1", ON); end; What im trying to achieve is that the neither Port 1 or 2 become live at the same time but work as i suspect the proper blind relay would ! Any help would be greatly appreciated as i am finishing the project tomorrow and have quite a few of these to write for the job Cheers Jon