![]() |
|
Software - Printable Version +- Comfort Automation/ Security System Forums (https://www.comfortforums.com) +-- Forum: Products (https://www.comfortforums.com/forum-3.html) +--- Forum: Questions on Using Comfort (https://www.comfortforums.com/forum-159.html) +--- Thread: Software (/thread-1079.html) |
- Electronia - 06-01-2008 I am using:
I have created 16 GA\'s \"028 ... 043\" in Cbus Toolkit for PIR1 ... PIR16. In Comfort if the PIR_Garage (zone 1) <> 0 I use responce PIR1_On in the on responce and PIR1_Off in the off responce. the idea is to set the Cbus GA \"028\" to on and off respectivly, but I cant see the change on this GA in Piced when the PIR sees movement. [indent]
Q. Is there an alternative way of setting the status of the PIR\'s on Cbus? Q. How can I set the status of a key (4 keys per page) of a Clipsal DLT Ulti Saturn key switch on Comfort? Q. When the Scene Controller is in a particular mode, and a PIR sees movement at night time it will overide the Scene setting by switching its designated light circuit to a on level. To prevent this I need to send the status of a Scene key to Comfort so that it overides the on responce for the zone of that PIR. How can this be done? Kobus [indent] [/indent] - slychiu - 06-01-2008 Your On Response and Off Response for each PIR should switch the C-Bus lights on that address. However make sure you have the C-Bus group addresses numbered correctly. The Clipsal group addresses you mentioned are in Hexadecimal notation or decimal? Check that the UCM/CBUS (Not UCM02) has its ID set to 2 on SW7, and in your Mindit Number of UCMs = 2 Your UCM/CBUS should have both leds D9 and D10 (green and red) both rapidly flashing showing that it is communicating with Comfort The other leds RDY (green) should be ON, ERR should not be on, Busy 1 will flash wehen there is any C-Bus message from the C-Bus, BUSY2 should flash when there is any message to C-Bus (like from the PIR activation) Make sure that the C-Bus wires are connected in the correct polarity to the UCM/CBUS. There is no polarity marking on the connector (by Clipsal) of which is +ve or -ve. I am not familiar with the DLT, but the status of the leds can be set by Comfort by sending the group address and the command to it I am not sure what you mean in the last question. My assumptions are; You have a zone response on the PIR which turns on a Cbus light when motion is detected You need to override that On response when a Scene key is active If the Scene has a group address, say 10, that group address status is captured in Counter 10. In the zone Response, you can check the value of the counter 10 to decide if you will switch the light or another light on, or not at all. - Electronia - 06-01-2008 Thanks for your reply. I have no wiring problem its all OK. What I have done is to write a little bit of logic in Comfigurator and it is switching the Cbus relays correctly. But I can still not see the change of the GA\'s at the Cbus side, I need to see this changes to make it usable in the PAC. See attached file, this limmited logic works from Comfort. But I would realy like to do the logic in Piced, it makes life easier with regards to the key inputs, scene settings and senario\'s. PIR_1 switches certain Cbus channels on and then off after 5 min at night time when movement is detected. PIR_2 ... PIR_11 switches certain Cbus channels on and then off after 5 min at any time movement is detected PIR_12 is what I would like to use, but it doesnt seem to set that GA Kobus - slychiu - 06-01-2008 Hi Kobus I dont why the zone response is able to switch the Cbus relays but you are unable to see the GAs on the CBus side. The fact that it is switching the relays means that it has sent the correct message to the correct group address on C-Bus. Why are you not able to see that group address ih Cbus? This may be a C-Bus or Colour CTouch configuration issue which is affecting you I have looked at one of the Zone Responses, on Zone 1, PIR_!_Garage; If Input PIR_1_Garage <> 0 Then If Hours >= 18 Then If Hours < 7 Then End If End If Do C1_ON [Switch Cbus Circuit C1 on] Do C1_OFF [Switch Cbus Circuit C1 off] After 5 Seconds Using Timer01 End If The 1st line \"If Input PIR_1_Garage <> 0 Then\" is superfluous, as this response is triggered by that same PIR_1_garage. Hence that condition can be removed for simplicity, although it causes no harm except to make your responses longer. If you examine the above logic condtion, you will find that the If Hours do nothing because there is nothing to do when the two conditions are true except End If The last two Do responses happens always whatever the time because they are outside the conditional loops. The conditions for Hours> and < can be replaced by the condition \"If Night time\" Found in Response Wizard > If > System Parameter > Night Time The Night Time flag is TRUE after Sunset and before Sunrise. Look in the Schedule > Sunrise/Sunset Times screen, and select your City (Johannesburg?) to apply the table of Sunrise and Sunset Times. Comfort can adjust Daylight Saving time changes automatically so your Time Programs and Reminders work correctly Hence the above Response can be simplified to If Night Time Then Do C1_ON [Switch Cbus Circuit C1 on] Do C1_OFF [Switch Cbus Circuit C1 off] After 5 Seconds Using Timer01 End If Provided the above is what you wanted In the zone responses you have the lights switching on but there is no action to switch them off after 5 minutes I dont know if you have the PAC doing thatm b ut in Comfort you can program the OFF Response of each zone as Do Response (Switch off Cbus group address) after 300 seconds using Timer ForZone1 I hope this is helpful - Electronia - 06-01-2008 Thank\'s for your quick responce Kobus |