Difference between revisions of "MyHome"
Line 291: | Line 291: | ||
|ignored | |ignored | ||
|W | |W | ||
− | |the | + | |the <ioserver>.frame data point is set with monitored frames that are not recognized and translated to specific events |
|- | |- | ||
|all | |all | ||
Line 298: | Line 298: | ||
|- | |- | ||
+ | |rowspan="3" |clock | ||
+ | |sync | ||
+ | |W | ||
+ | |set the gateway clock to HSYCO’s current time | ||
+ | |- | ||
+ | |read | ||
+ | |W | ||
+ | |read the gateway clock, and the delta with HSYCO’s time | ||
+ | |- | ||
+ | |yyyy-mm-dd hh:mm:ss | ||
+ | |R | ||
+ | |the gateway clock current time | ||
+ | |- | ||
+ | |clock.delta | ||
+ | |integer | ||
+ | |R | ||
+ | |the delta time in seconds between the gateway and HSYCO clocks. A positive number means that the gateway clock is ahead of HSYCO | ||
+ | |- | ||
|} | |} | ||
Revision as of 14:38, 28 February 2014
MyHome is a proprietary bus system for home automation developed by BTicino. HSYCO fully integrates with MyHome using the OpenWebNet (OWN) protocol.
HSYCO supports all MyHome devices and features that the OWN protocol officially supports, including lighting, automation, scenes, AUX and CEN addressing, the temperature control unit and burglar alarm unit.
The bus architecture can be arranged as a single bus or with a riser and several local busses.
Contents
- 1 Communication
- 2 Gateway Configuration
- 3 L4686SDK Module
- 4 HSYCO Configuration
- 5 The Device Configuration Database
- 6 Datapoints
- 6.1 Gateway Module
- 6.2 Scenario Modules
- 6.3 Lighting: on/off Modules
- 6.4 Lighting: Dimmer Modules
- 6.5 Automation: Inter-locking Modules
- 6.6 Temperature Control: Central Unit
- 6.7 Temperature Control: Zones
- 6.8 Burglar Alarm: Main Panel
- 6.9 Burglar Alarm: Zones and Technical (aux)
- 6.10 Auxiliary Addresses
- 6.11 CEN Modules
- 6.12 CENPLUS Modules
- 6.13 F421 Load Control Unit
- 7 User Interface
- 8 Release Notes
Communication
HSYCO supports the Ethernet IP connection to MyHome through IP-based OWN gateways, including the F452, F453, F454, F453AV, MH200 and MH200N.
HSYCO also supports the L4686SDK module through an USB connection and an associated virtual serial port.
Gateway Configuration
The OWN gateway must be configured to allow open OWN connections from the IP address assigned to the HSYCO server.
L4686SDK Module
The L4686SDK interface module is connected to HSYCO using a USB cable.
The operating system creates a virtual serial port; its name depends on your HSYCO server configuration, and should be ttyUSB0 if there are no other devices connected to the USB ports.
You could also use the ftdi-n-n.n alias, that is unique for each physical USB port on the server. In this case, you should also list the full device name in the CommPortsList parameter.
L4686SDK Limitations
- L4686SDK firmware version 1.20.0 or later is required
- Not all protocol frames are supported. The I/O server has been tested with the following functions: scenarios, lights, automation, temperature control, AUX and CEN plus
- Check the L4686SDK documentation to know which functions are actually supported, also based on the L4686SDK firmware version
- The clock read and sync functions are not supported
- HSYCO only support the L4686SDK module on a single main bus; private raiser buses are not supported
- the USB connection cable should never be unplugged during normal operations. If the cable is unplugged, HSYCO will not be able to restore the connection to the L4686SDK until it is manually restarted.
HSYCO Configuration
Options
ID | Default | Values | Description |
---|---|---|---|
gui | true | true | enables automatic support of Web GUI objects to show the status of the system and intercept control buttons |
false | disables support for the Web GUI | ||
startupevents | false | true | generate IO events also during the driver’s start-up phase |
false | start generating events only after HSYCO is aligned with the current status of the system | ||
discovery | true | true | auto-detects MyHome lighting and automation devices that are connected to the bus and are fully operational, and automatically creates the list of all detected devices and individual data points in the systemtopo.txt file |
false | auto-detect is disabled | ||
tempzones[Note 1] | z1 ... z<n> | if you want to monitor and control temperature zones, all zone numbers should be listed with the tempzones option. Zone numbers should be separated by semicolons | |
language | en | en, it, fr | the language used for automatically generated GUI text fields |
- Note 1
- The 4695 four zone temperature control unit uses a zone address for the control unit itself. This address has to be marked as a special address in the tempzones parameter, enclosing it in round brackets.
For example:
tempZones=(32);33
defines a central unit having address 32, and an additional zone with address 33.
The MyHome I/O Server supports only one central unit for each SCS riser bus. |}
myhome.ini
The myhome.ini file is a specific configuration file located in the main directory (same directory as hsyco.ini or hsyco.jar).
This file is optional. It is only used to assign friendly names to the burglar alarm zones and technical alarms, so that these names are used in the GUI log and the security.log files.
If you have multiple My Home gateways with multiple burglar alarm panels, the parameters need to be defined for each system, using unique ids, according to the following table:
ID | Description |
---|---|
security.zone.<n> | the friendly name for burglar alarm zone <n> |
security.aux.<n> | the friendly name for burglar alarm technical alarm <n> |
The myhome.ini is automatically detected at start-up and automatically reloaded whenever it is modified.
For example, the following myhome.ini file is used to define a few friendly names of two distinct My Home systems:
mh1.security.zone.1.name=entrance mh1.security.zone.2.name=lobby mh1.security.aux.1.name=flooding mh2.security.zone.3.name=windows mh2.security.zone.5.name=driveway
The Device Configuration Database
The systemtopo.txt file contains the list of all lighting and automation devices that could be directly associated to graphic object in the Web-based user interface.
This file can be filled manually or automatically by HSYCO at start-up. To enable automatic discovery and automatic generation of devices’ information in the systemtopo file, use the discovery option in System Settings. The discovery feature is enabled by default.
This is an example of an automatically generated systemtopo.txt file:
(devices) mh.autom.82 : AUTOM ; VSHUT ; mh.autom.88 : AUTOM ; VSHUT ; mh.autom.93 : AUTOM ; VSHUT ; mh.autom.96 : AUTOM ; VSHUT ; mh.light.11 : LIGHT ; LIGHT ; mh.light.12 : LIGHT ; LIGHT ; mh.light.13 : LIGHT ; LIGHT ; mh.light.16 : LIGHT ; LIGHT ; mh.light.25 : LIGHT ; DIMMER ; DIMMER
Note that HSYCO can automatically detects dimmer modules if they are on when discovery is performed. If a dimmer is off, it will be listed as an ordinary on/off light module, and should be manually changed to DIMMER.
You should manually add comments and other optional parameters:
(devices) mh.autom.82 : AUTOM ; VSHUT ; driveway gate mh.autom.88 : AUTOM ; VSHUT ; awning mh.autom.93 : AUTOM ; VSHUT ; kitchen shutter mh.autom.96 : AUTOM ; VSHUT ; bedroom shutter
Also, if you want to use (button) objects in the Project Editor to control scenes, you should manually add scenes definitions in systemtopo.txt, as HSYCO can’t automatically detect scene modules and stored scenes:
(devices) mh.scene.94.5 : LIGHT ; SCENE ; close all shutters mh.scene.94.10 : LIGHT ; SCENE ; night mode
Datapoints
The naming convention HSYCO uses for the events and to control all MyHome devices is closely related to the MyHome addressing standards and the OpenWebNet protocol implementation.
In OWN, the standard monitor and command frames have the following format:
*WHO*WHAT*WHERE##
The WHO field defines the module’s family or function. WHAT is the state of a device, for example 0 for off and 1 for the on state of an on/off module. Finally, WHERE is the module’s address, including the local bus number if the module is not on the riser bus.
With few exceptions, this frame format translates to the following event format inside HSYCO:
IO servername.who.where = what
The WHO field in OWN frames is a number, while we use a literal string in HSYCO to make names easier to read.
The table below lists all supported WHO functions and the HSYCO’s corresponding literals that form the prefix of all IO data points.
OWN WHO | HSYCO Prefix | Function Description |
---|---|---|
0 | scene | scenario module |
1 | light | lighting module |
2 | autom | automation module (inter-locking) |
3 | load | load control |
4 | temp | temperature control |
5 | security | burglar alarm panel |
9 | aux | auxiliary address |
15 | cen | cen modules / addresses |
25 | cenplus | cen plus modules and dry contacts / IR modules |
The WHERE field in OWN is, in most cases, the numeric address of a module, eventually followed by #4#B for modules on local buses (B is the local bus numerical id). Group addressing has the WHERE field formatted as #G, where G is the group’s numerical id.
The table below defines the conversion rules between the OWN WHERE format and HSYCO’s data points format.
OWN WHERE | HSYCO Format | Description |
---|---|---|
N | N | HSYCO simply passes the where field back and forth with no changes |
#N | gN | group addresses are represented in HSYCO as a lowercase g followed by the group numerical id, from 1 to 9 |
N#4#B | lB.N | a lowercase “l” and the local bus id are prefixed to the base address |
#N#4#B | lB.gN | group addressing on local buses |
The WHAT field represents the value or action, and corresponds to the data point value in HSYCO. Each function supports a specific set of WHAT values.
Gateway Module
ID | Value | R/W | Description |
---|---|---|---|
connection | online | R | connection established to the OWN gateway |
offline | R | HSYCO can’t connect to the OWN gateway | |
frame | OWN raw frame | R | a frame event is generated on incoming frames, based on the <ioserver>.monitor setting (see below) |
W | send a raw OWN frame to the gateway | ||
monitor | none | W | the <ioserver>.frame data point is not set with monitored frames |
ignored | W | the <ioserver>.frame data point is set with monitored frames that are not recognized and translated to specific events | |
all | W | the <ioserver>.frame data point is set with any monitored frame | |
clock | sync | W | set the gateway clock to HSYCO’s current time |
read | W | read the gateway clock, and the delta with HSYCO’s time | |
yyyy-mm-dd hh:mm:ss | R | the gateway clock current time | |
clock.delta | integer | R | the delta time in seconds between the gateway and HSYCO clocks. A positive number means that the gateway clock is ahead of HSYCO |
Scenario Modules
ID | Value | R/W | Description |
---|
Lighting: on/off Modules
ID | Value | R/W | Description |
---|
Lighting: Dimmer Modules
ID | Value | R/W | Description |
---|
Automation: Inter-locking Modules
ID | Value | R/W | Description |
---|
Temperature Control: Central Unit
ID | Value | R/W | Description |
---|
Temperature Control: Zones
ID | Value | R/W | Description |
---|
Burglar Alarm: Main Panel
ID | Value | R/W | Description |
---|
Burglar Alarm: Zones and Technical (aux)
ID | Value | R/W | Description |
---|
Auxiliary Addresses
ID | Value | R/W | Description |
---|
CEN Modules
ID | Value | R/W | Description |
---|
CENPLUS Modules
ID | Value | R/W | Description |
---|
F421 Load Control Unit
ID | Value | R/W | Description |
---|
User Interface
Temperature Control Unit
UISET Actions
USER Commands
ID | Attribute | Set to |
---|
Name | Param | Action |
---|
Temperature Zones
Zone unlock
Name | Param | Action |
---|
Burglar Alarm Unit
UISET Actions
USER Commands
Because the MyHome burglar alarm panel cannot be directly controlled via OpenWebNet commands, there are no standard control objects for this system.
Release Notes
3.3.0
- added support of the L4686SDK interface module
3.2.2
- clock read and sync are now based on local time
3.2.1
- improved handling of connection errors
3.2.0
- new clock datapoint to read the gateway’s internal clock and set it to HSYCO's time
3.0.0
- initial release
ID | Attribute | Set to |
---|