Skip to main content
Version: 4.1

Mews / KNX Client Gateway

To access HSYCO Manager open a browser and type the URL:

https://192.168.1.50/hsycoserver/manager

note

The IP address and the URLKey written above are the default ones

Add a Mews I/O Server

1. From the Manager splash page click Settings

2. Click I/O Servers

3. Click the "+" icon

4. Open the the I/O Server selection and select "Mews"

5. Assign a unique name to the I/O Server instance, for example "mews".

6. Click "Confirm"

7. Open the "Options" popup

8. Specify the accesstoken and the clientoken, these parameters are mandatory

9. Click "x" to close the popup.

10. Click "Save" to apply modification and restart

Check the connection status

1. Let’s now check the connection status of the Mews I/O server we just added. Go back to the Manager splash screen and click on Status Browser.

2. Click the "Filter" field to search for the connection datapoint.

3. Click on the settings icon.

4. If the datapoint ‘mews.connection’ is equal to ‘online,’ this means that the Mews I/O server is successfully connected to HSYCO.

Add a KNX I/O Server

1. Open the HSYCO Manager splash page.

2. Click Settings.

3. Click "I/O Servers"

4. Click the "+" icon.

5. Open the the I/O Server selection.

6. Type "knx"

7. Select a KNX type I/O Server.

8. Select the name field.

9. Assign a unique name to the I/O Server instance, for example "knx".

10. Select the IP field.

11. Type the IP address of a KNX/IP gateway. For example: "192.168.1.188"

12. Select the port field.

13. Specify the TCP port of KNX, default is "3671"

14. Click "+" to add an add the option startupevents equals to true. Setting to true means generating IO events also during the driver’s start-up phase.

15. Click "Confirm"

16. Click "Save"

17. Click Save again to confirm.

HSYCO ETS .knxproj file import

Import a KNX project

Check the connection status

1. Let’s now check the connection status of the I/O Servers we just added. Go back to the Manager splash screen and click on Status Browser.

2. Click the "Filter" field to search for the connection datapoint.

3. Click on the settings icon.

4. Click "Any Word". When using this option, the search will return entries that contain any of the specified words, rather than requiring all of them to be present.

5. Type " mews.conn" and "knx.conn"

6. If the datapoints ‘mews.connection’ and ‘knx.connection’ are equal to ‘online,’ this means that both KNX and Mews I/O Servers are successfully connected to HSYCO.

EVENTS scripting

1. From the Manager splash screen select Code Editor.

2. Click "New Events File"

3. Give a name to your script, for example: "gateway.txt"

4. Click "New File"

5. Now it's time to write some lines of code.

#if a room is reserved today change the value of a KNX group
io mews.resource.101.reserved.today = true : io knx.1/2/3 = 1
io mews.resource.101.reserved.today = false : io knx.1/2/3 = 0


#if a room is checked-in change the value of a KNX group
io mews.resource.101.checkedin = true : io knx.4/5/6 = 1
io mews.resource.101.checkedin = false : io knx.4/5/6 = 0