Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Latest Threads
UCMA/Pi for Home Assistan...
Last Post: PaulGordon
4 hours ago
System not announcing are...
Last Post: raygregg114
5 hours ago
Cbus to KNX translator - ...
Last Post: Home
11 hours ago
Trouble connecting
Last Post: Home
09-21-2026, 03:42 PM
Comfort Analog Input Grap...
Last Post: slychiu
09-12-2026, 08:31 AM
Comfort Server Manager 2
Last Post: slychiu
09-08-2026, 04:48 AM
Comfort App Converter Dow...
Last Post: slychiu
09-08-2026, 02:00 AM
Comfort Android App 2.1 t...
Last Post: slychiu
09-08-2026, 01:56 AM
Ucm velbus c9mmunicati8ns...
Last Post: wexfordman
09-05-2026, 11:29 PM
Custom Events
Last Post: Ingo
08-29-2026, 08:47 AM

Forum Statistics
» Members: 53,661,   » Latest member: PaulGordon,   » Forum threads: 5,213,   » Forum posts: 28,672,  
Full Statistics

  Setting Annoucement Level From A Response
Posted by: Tas - 08-05-2023, 03:23 PM - Forum: Responses and Actions - Replies (3)

Hi,
Is it possible to do this? Ideally I\'d like to set it to a value that has been stored in a counter.
I figured there must be a way to set the value of any location but I can\'t find anything in the action codes reference.
Many thanks,Tas

Print this item

  Will UCM/GSM4 (3G) work when 3G switched off?
Posted by: caravanboy - 06-26-2023, 04:28 PM - Forum: GSM Module - Replies (16)

I have a system with a UCM/GSM4 which is a 3G module. I have read recent news stories (such as this one in the UK) which talk about operators soon turning off 3G support. 


Am I correct in assuming that when my SIM provider removes 2G and 3G then I will need to buy a new UCG/4G module and there is no way to upgrade my GSM4 and make it work with 4G/5G services (even if I have a 4G/5G SIM card)?

Print this item

  CM9001-EMS in a Central Kitchen
Posted by: slychiu - 06-03-2023, 02:50 AM - Forum: Environmental Monitoring System - Replies (1)

This is an example of Comfort CM9001 Environmental Monitoring System installed in a Central Kitchen. The functions are

  1. Monitor status  on the Electrical Control Panels eg Incoming Fan On, Incoming Fan Trip,  Local/Remote control, Exhaust Fan on/trip, Evaporator Temperature Trip, Man Trap, Evaporator Low Pressure
  2. Control the Fans - Exhaust, Incoming on all electrical Control Panels when in Auto or Remote mode
  3. Monitor NTC (Negative Temperature Coefficient) Sensors via IRIO to determine temperature and overtemperature
  4. In the event of any alarm ie Trip, high temperature, send SMS or voice call to max of 16 phone numbers
  5. Interface with Central Building Monitoring System (iBMS)  via Modbus (UCM/Modbus)
  6. Each system has up to 96 inputs and outputs, Slaves are installed in different areas in the facility connected to the Main CM9001-EMS via RS485 Data cable.
Equipment List
  • CP9001-EMS with 8 Inputs, 8 Outputs, with Metal Encolsore, backup Battery 12V 7AH
  • SEP01 Slave Expansion Module with 0 Inputs, 8 Outputs, with Metal Encolsore, backup Battery 12V 7AH
  • OP03B output msubmodule plug in on Slaves
  • KP04AE Keypad with Display of sensors and setpoint values
  • UCM/Modbus-485 Modbus Interface Modbus RTU in Slave Mode
  • UCM/4G GSM Module for sending SMS and voice calls for any alarm, up to 16 phone numbers
  • IRIO01 Intelligent Remote 8  I/O with ISM01 Analog/Disigtal Submodules
  • NTC Temperature sensors connected to IRIO

Print this item

  KNX/Logic Example
Posted by: slychiu - 05-21-2023, 03:37 AM - Forum: KNX (EIB) - Replies (2)

This example shows how KNX/Logic can implement Logic conditions with If/Then/Else actions more easily than using other KNX logic products. 
This requirement is for a public toilet in a large public building eg Railway or Airport. A KNX Human Presence Counter is installed (eg https://www.steinel.de/en/sensors-profes...33200.html ), to count the number of people in the male and female toilets. The logic required is as in the flowchart below. Basically, the Fan speed is determined by the number of people detected. if the number is >5, the fan speed goes from low to medium, and if >10 the speed goes to High immediately. However if the people counted is less than 9, the fan speed goes from High to Medium after some time eg 15 minutes and if the people detected is less than 5, the fan speed goes from medium to low after eg 15 minutes. The purpose is for  energy saving for a facility that is open 24 hours a day 7 days  a week. This system is implemented in all the toilets in the facility, thus can result in significant energy saving in the building or buildings. 



Another requirement not mentioned above is that the maximum counter of the Male and Female Toilets is used in the logic, so the logic uses the larger number based on the 2 toilets in its determination of fan speed

In Comfigurator, go Modules Tab > Controller, and the right pane with KNX/Logic Properties. Select KNX > Comfort Tab as shown below.
Add the 3 KNX objects; 1 byte Scaling Values (EIS6).
0/0/2 is the Fan speed.  Map to Counter 17
0/0/15 is the 1st Toilet People Count. Map to Counter 15
0/0/16 is the 2nd Toilet People count. Map to Counter 16

Each KNX object is mapped to a Counter Register in this program. Counters are 16 bit registers in Comfort which hold values and can execute Responses, or Programs based on the counter value.





In the Counters screen below, each Counter can be assigned to a Response or program in Comfort. This allows the Response to perform logic on the counter based on the Value in the counter. Counters 15 and 16 are both assigned to the same Response.




The Response assigned to the counter is programmed in the Responses Screen (Events > Responses)




The Responses consists of Actions, The text of the Response is duplicated below:

If Counter Counter015 >= 10 Or Counter Counter016 >= 10 Then
    Set Counter017(17) = 255
    Stop Timer Timer01(1)
    Exit Response
Else
    Do Medium After 10 Seconds Using Timer01(1)
End If
If Counter Counter015 >= 5 Or Counter Counter016 >= 5 Then
    If Counter Counter017 = 255 Then
        Do Medium After 10 Seconds Using Timer01(1)
    Else
        Do Medium
        Stop Timer Timer01(1)
    End If
Else
    If Counter Counter017 = 255 Then
        Do Medium After 10 Seconds Using Timer01(1)
    Else
        Do LOWFAN After 10 Seconds Using Timer01(1)
    End If
End If

Do Medium means Do the Medium response which sets fan speed to Medium Value.
Do LOWFAN means Do the LOWFAN Response which sets the fan speed to Low.

Timers (max 32 timers) can also be used to implement delays between actions. 
Do LOWFAN After 10 Seconds Using Timer01(1) means delay for 10 seconds then do LOWFAN.. 10 second delay is used for testing so that we do not have to wait so long to test. When testing is completed, the delays can be increased to say 15 minutes.
Stop Timer means stop the timer to prevent the target Response from executing.



Print this item

  LEM01-M2 on SEM01C?
Posted by: lms - 05-18-2023, 09:22 PM - Forum: Expansion Modules - Replies (4)

I have a CPU9000 system with 4 SEMs/LEMs. Three SEM01-M2 boards have been damaged by a surge on the bus but only one LEM01-M2 appears to be damaged. The power supply board of all the SEMs appear to be OK.

Is the SEM01-M2 still available? If not, will the LEM02-M2 work with the SEM01C? Or do I have to replace the SEMs and LEMs and also install the OP03 boards to get the maximum of 16 inputs and 16 outputs for each SEM/LEM pair?

Print this item

  Zone Trouble on a Magnetic Contact
Posted by: Howser - 05-09-2023, 09:59 AM - Forum: Troubles - Replies (6)

I have a input zone (6) [No EOL] that has a magnetic contact and has never given issues for years until two days ago when it started reporting zone trouble randomly. We had a alarm triggered in the early mornings for the last two days.

Am using;

  • ULTRA 2
  • Comfort Version: 7.201
  • Comfigurator:  3.13.9

Print this item

  Vocabulary Corrupt after transfer
Posted by: timop001 - 05-01-2023, 05:02 PM - Forum: Vocabulary Issues - Replies (2)

Comfort 2 Ultra 7.116 FS 34, Comfigurator 3.13.9.0
I generated a custom vocabulary a few years ago and the system has been working fine.
I recently decided some Responses needed updating. I upgraded to the latest Comfigurator version and the config folder contained all the necessary new voice files including TN.bin/cfg, sentence.cfg, vocab.cfg, vocust.cfg

When I transferred the new responses (full transfer) the vocab is now reporting lost/corrupted. Vocab name is \"lost/corrupted\" and Custom vocab is reported a \"No\".
I have tried rebooting the alarm from off, unplgging the battery - but no effect.
What should I do next ? Vocab upgrade ?
Don\'t understand why it has done this when it was quite happy with the custom vocab before.
Cheers Tim

Print this item

  Unable to disarm
Posted by: Ian - 04-27-2023, 10:36 AM - Forum: Comfort Android App - Replies (9)

I rarely use the mobile app.Recently I wanted to disarm the system whilst out of the house. I logged on and went through the procedure, entering my code when required. The system would not change to Security Off.Can anybody advise what I can check to get it working?
Comfort II. Android app running on a Samsung S10

Print this item

  Cytech Comfort App - Privacy Policy
Posted by: slychiu - 04-25-2023, 12:17 PM - Forum: Comfort Android App - No Replies

Cytech Comfort App Privacy Policy

The Cytech Comfort App does not collect or store User data on any server. All data is between the users phone and their own Comfort system. For any clarification, please contact info@cytech.biz

Print this item

  Synchronise Comfort Time with Internet Time
Posted by: slychiu - 04-04-2023, 05:23 AM - Forum: GSM Module - No Replies

The UCM/4G GSM Module is able to synchronise the Comfort Time with an Internet Time Server
.



Go to the  Modules Tab.
select the UCM/ GSM Module on the left pane. On the right pane see UCM/GSM Properties. Set \"Time Update from GSM\" value =1.
For Time Zone, enter the hours offset from GMT, eg 0 for UK,  +8 for singapore.
WRITE to EEPROM on the top menu of the GSM Menu
Note that the UCM/ETH03 has a similar feature. If you also have a UCM/ETH03, use only 1 of the time sync features on 1 of the modules to prevent unneccessary time updates from the NTP server
This feature is not present in the UCM/GSM 3G module

Print this item


Online Users
There are currently 1063 online users. » 0 Member(s) | 1059 Guest(s)
Applebot, Baidu, Bing, Google

Powered By MyBB, © 2002-2026 Melroy van den Berg.