I had an air conditioning system installed recently and have it working with C-Bus. I thought other people might benefit from my work, so I am going to share it in a few posts when I get time. The dampers provided did not have limit switches on them, so I had to do a bit of extra work to make them work with C-Bus. I had planned to just use change-over relays to switch the dampers, but the motors run continually when power is applied, so I had to add a series relay to allow power to be switched on only for long enough for the damper to switch (they need about 20 seconds): [ATTACH]851.vB[/ATTACH] Then I added some logic to a Colour C-Touch to pulse the "common" relay on for 30 seconds whenever a zone damper group address changed: [CODE]once GetLightingState("AC Bedroom 1") then PulseCBusLevel("Wired", "Lighting", "AC Damper Common", 100%, "0s", ACDamperDuration, 0%); once not GetLightingState("AC Bedroom 1") then PulseCBusLevel("Wired", "Lighting", "AC Damper Common", 100%, "0s", ACDamperDuration, 0%); once GetLightingState("AC Bedroom 2") then PulseCBusLevel("Wired", "Lighting", "AC Damper Common", 100%, "0s", ACDamperDuration, 0%); once not GetLightingState("AC Bedroom 2") then PulseCBusLevel("Wired", "Lighting", "AC Damper Common", 100%, "0s", ACDamperDuration, 0%); etc[/CODE] Then I created a Scene containing all of the zone damper group addresses so that I could see when all zones were off so that the AC power could be switched off if all zones get closed: [CODE]once SceneIsSet("AC Zones Off") then SetLightingState("AC Power", OFF);[/CODE]