JavaScript Command and Utility Functions API

From HSYCO
Jump to navigation Jump to search

Contents

System Functions

dateSet

dateSet(year, month, day, hour, minute, second)

Sets the HSYCO Server operating system’s clock and hardware clock, in the local time zone.


Parameters:

  • year: numeric - the year, greater than 1900
  • month: numeric - the month, between 1-12
  • day: numeric - the day, between 1-31
  • hour: numeric - the hour, between 0-23
  • minute: numeric - the minute, between 0-59
  • second: numeric - the second, between 0-59.


Returns:

  • boolean - true if successful, false if not.


getNextSunrise

getNextSunrise(now, withoffset)

Computes the time of the next sunrise after the time set in the now parameter.

The sunrise time is returned in milliseconds since midnight, January 1, 1970 UTC.


Parameters:

  • now: numeric - the reference time in milliseconds
  • withoffset: boolean - true to take the sunrise offset into account, as defined with the SunriseOffsetMinutes in hsyco.ini, false to ignore the offset and return the actual sunrise time (Based on civil dawn, begins when the geometric center of the sun is 6° below the horizon).


Returns:

  • numeric - the next sunrise time in milliseconds since midnight, January 1, 1970 UTC.


getNextSunset

getNextSunset(now, withoffset)

Computes the time of the next sunset after the time set in the now parameter.

The sunset time is returned in milliseconds since midnight, January 1, 1970 UTC.


Parameters:

  • now: numeric - the reference time in milliseconds
  • withoffset: boolean - true to take the sunset offset into account, as defined with the SunriseOffsetMinutes in hsyco.ini, false to ignore the offset and return the actual sunrise time (Based on civil dusk, ends when the geometric center of the sun reaches 6° below the horizon).


Returns:

  • numeric - the next sunset time in milliseconds since midnight, January 1, 1970 UTC.


haActiveState

haActiveState()

When HSYCO is installed in a high availability configuration, this method returns true if the system (master or slave) is active, false if it is not active.

If high availability is not configured, the method returns true.


Returns:

  • boolean - high availability current state.


haActive

haActive(active)

Force a master HSYCO server to become inactive, or return to the active state.

This method should be called on the master only, and has no effect on the slave server.


Parameters:

  • active: boolean - set to true to force a master to become inactive, or false to return it to the active state after the master was forced to become inactive.


isDaylight

isDaylight()

Returns the day or night status at present time.

The result is based on the latitude and longitude data set in hsyco.ini and the SunriseOffsetMinutes and SunsetOffsetMinutes parameters.


Returns:

  • boolean - true during the day, false at night.


nlp

nlp(text)

Send a text to the Natural Language Processor (NLP). See the NLP engine page for additional information.


Parameters:

  • text: string - natural language text string.

powerSet

powerSet(power)

Sets the electric power state variable.

The power value is shown in the navigation or status bar of the Web interface.

Besides setting the power value, this method also triggers the execution of the powerEvent() callback and the POWER event in EVENTS.


Parameters:

  • power: numeric - the power in Watt units.

programTimerClear

programTimerClear(name)

Cancels a program timer.


Parameters:

  • name: string - the program timer name.


programTimerRepeat

programTimerRepeat(name, seconds)

Sets a program timer that is executed repeatedly with an interval equal to the specified number of seconds.

If a program timer with the same name has already been set, the number of seconds to the timer’s execution is reset to the new value.


Parameters:

  • name: string - the program timer name
  • seconds: numeric - the interval in seconds of the timer’s execution.

If the program timer name starts with $, then the server will also automatically set a variable, with a name equal to the program timer's name, to the remaining number of seconds. Note that the variable is not guarateed to be updated at every second, as some updates may be skipped due to timing constraints.

programTimerReset

programTimerReset(name, seconds)

Sets a program timer to be executed after the specified number of seconds.

If a program timer with the same name has already been set, the number of seconds to the timer’s execution is reset to the new value.


Parameters:

  • name: string - the program timer name
  • seconds: numeric - the number of seconds to the timer’s execution.

If the program timer name starts with $, then the server will also automatically set a variable, with a name equal to the program timer's name, to the remaining number of seconds. Note that the variable is not guarateed to be updated at every second, as some updates may be skipped due to timing constraints.

programTimerSet

programTimerSet(name, seconds)

Sets a program timer to be executed after the specified number of seconds. If a program timer with the same name has already been set, the action will be ignored.


Parameters:

  • name: string - the program timer name
  • seconds: numeric - the number of seconds to the timer’s execution.

If the program timer name starts with $, then the server will also automatically set a variable, with a name equal to the program timer's name, to the remaining number of seconds. Note that the variable is not guarateed to be updated at every second, as some updates may be skipped due to timing constraints.

schedulerRegister

schedulerRegister(groupname, schedulename, interval)

This function registers a new scheduled callback.

Schedules are defined using a group name and a schedule name.

Schedules under the same group run in the same thread and are executed sequentially, based on their interval in milliseconds. Schedules in different groups run in parallel.


Parameters:

  • groupname: string - the group name
  • schedulename: string - the schedule name
  • interval: numeric - interval in milliseconds.

schedulerRemove

schedulerRemove(groupname, schedulename)

Deletes a schedule.


Parameters:

  • groupname: string - the group name
  • schedulename: string - the schedule name.


sleep

sleep(millis)

Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds.


Parameters:

  • millis: numeric - the length of time to sleep in milliseconds.


varGet

varGet(name)

Returns the value of a program variable, or a comma-separated list of all variables.

Program variables can be set using varSet() in user.java or in the EVENTS programming environment.

To access a variable used in EVENTS, the name used in varGet() should start with the $ character.

Variables names ending with ! are considered persistent and their values are preserved when HSYCO restarts; normal variables are deleted when HSYCO starts.


Parameters:

  • name: string - the variable name. Names are case-insensitive. Set to "*" to request the list of all variables.


Returns:

  • string - the current value of the program variable or comma-separated list of all variables. Returns null if the variable is not defined.

varSet

varSet(name, value)

Sets a program variable to the value parameter.

Variables set with varSet() can be read using varGet() and are also available in the EVENTS programming environment, if the variable name starts with $.

If you need to use variables in Java or JavaScript but don’t want these variables to be available in EVENTS, just use names that don’t start with the $ character.

Variables names ending with ! are considered persistent and their values are preserved when HSYCO restarts; normal variables are deleted when HSYCO starts.


Parameters:

  • name: string - the variable name. Names are case-insensitive
  • value: string - the value to be assigned to the program variable.


Cameras

cameraCommand

cameraCommand(func, action, camera)

Sends PTZ and focus commands to cameras.


Parameters:

  • function: string - see the table below
  • action: string - see the table below
  • camera: string - the camera name.
icon function action
Camover-ff.png focus far
Camover-fn.png focus near
Camover-zin.png zoom tele
Camover-zout.png zoom wide
Camover-l.png move left
Camover-r.png move right
Camover-u.png move up
Camover-d.png move down
move stop
Camerapanel ptz.png


cameraMode

cameraMode(cameraName, enabled)

Disables or enables a camera.

When the live view is disabled, recording is also disabled.


Parameters:

  • camera: string - the camera name
  • enabled: boolean - true to enable the camera, false to disable.

cameraRecMode

cameraRecMode(cameraName, enabled)

Disables or enables recording from a camera, not affecting live view.


Parameters:

  • camera: string - the camera name
  • enabled: boolean - true to enable the recording, false to disable.


cameraRecTrigger

cameraRecTrigger(cameraName, source, seconds)

Records video from a camera.


Parameters:

  • camera: string - the camera name
  • source: string - a string used to generate a log message, to identify the source that triggered the recording
  • seconds: numeric - recording time in seconds. If set to 0, stops the current recording.

cameraRecTriggerFull

cameraRecTriggerFull(cameraName, source, seconds)

Records video from a camera, like cameraRecTrigger(), but ignores the DroppedFrames parameter in hsyco.ini, so that all frames captured from the camera during the recording period are recorded with no skips.


Parameters:

  • camera: string - the camera name
  • source: string - a string used to generate a log message, to identify the source that triggered the recording
  • seconds: numeric - recording time in seconds. If set to 0, stops the current recording.

Data Logger

dataLoggerClear

dataLoggerClear(name)

Permanently deletes all historical data of the specified data logger.

Parameters:

  • name: string - data logger name.


Returns:

  • boolean - true if successful, false if not.


dataLoggerOptions

dataLoggerOptions(name, param, value)

Sets a specific option for the specified data logger.

So far the only available option is “origin” which sets the x-bar of all the charts linked to the data logger to the passed value.

Parameters:

  • name: string - data logger name
  • param: string - option to be set (“origin” is the only option you can currently set with this method)
  • value: string - value for the specified option.


Returns:

  • boolean - true if successful, false if not.


dataLoggerSave

dataLoggerSave(action, names, path, timestamp)

Also used to import and export of raw data logger data in CSV format. See Data Loggers CSV Import/Export for additional information.

The possible actions are:

  • log: append the last acquired value by the data logger to the specified file
  • stat: updates the specified file with the currently gathered data by the specified data logger
  • csvwrite: create a CSV file with all raw data of a data logger
  • csvread: insert, update or delete records to a data logger
  • csvreadover: insert records to a data logger, replacing all existing data.


Parameters:

  • action: string - set to "log", "stat", "csvwrite", "csvread" or "csvreadover"
  • names: string array - data logger names
  • path: string - path of the file to be created
  • timestamp: boolean - if true and the action is log adds a timestamp column in the CSV file for the logged values.


Returns:

  • boolean - true if successful, false if not.


Examples:

The following code appends a new line every minute to the userdata/log.csv file with the most recent values of three data loggers, "a", "b" and "c".

 time : { dataLoggerSave('log', ['a','b','c'], 'userdata/log.csv', true); }

dataLoggerUpdate

dataLoggerUpdate(name, value)

Supplies the specified data logger with a new value to be processed.


Parameters:

  • name: string - data logger name
  • value: numeric - value to be processed. Setting value to null, with counter data loggers only, resets the internal delta baseline.


Returns:

  • boolean - true if successful, false if not.


DMX

dmxGet

dmxGet(channel)

Returns the current status of a channel on the DMX-512 bus.


Parameters:

  • channel: numeric - when using one DMX gateway, address will be a standard DMX-512 address between 1 and 512. If there is more than one gateway, 1000 must be added to the DMX address for the second gateway, 2000 for the third one and so on.


Returns:

  • numeric - channel current status, between 0 and 255, or UNKNOWN (-1) if the status is unknown.


dmxOff

dmxOff(channel)

Sets a channel on the DMX-512 bus to 0. It also saves the previous value, so it can be restored with dmxOn().


Parameters:

  • channel: numeric - when using one DMX gateway, address will be a standard DMX-512 address between 1 and 512. If there is more than one gateway, 1000 must be added to the DMX address for the second gateway, 2000 for the third one and so on.


Returns:

  • numeric - 1 if successful, 0 if not.


dmxOn

dmxOn(channel)

Sets a DMX-512 channel to the value preceding the last call to dmxOff().


Parameters:

  • channel: numeric - when using one DMX gateway, address will be a standard DMX-512 address between 1 and 512. If there is more than one gateway, 1000 must be added to the DMX address for the second gateway, 2000 for the third one and so on.


Returns:

  • numeric - 1 if successful, 0 if not.


dmxMerge

dmxMerge(fromchannel, tochannel, merge)

Sets all DMX-512 channels between the parameters from and to to merge mode or normal mode. In merge mode, the channels on the DMX OUT bus of the gateway follow the values of the channels of the DMX IN bus.


Parameters:

  • fromchannel: numeric - first address of the range. When using one DMX gateway, address will be a standard DMX-512 address between 1 and 512. If there is more than one gateway, 1000 must be added to the DMX address for the second gateway, 2000 for the third one and so on
  • tochannel: numeric - last address of the range
  • merge: boolean - true to enable merge mode, false to return to normal mode.


Returns:

  • numeric - 1 if successful, -1 if to < from, 0 for other errors.


dmxSet

dmxSet(channel, state)

Sets the value of a single DMX-512 channel.


Parameters:

  • channel: numeric - when using one DMX gateway, address will be a standard DMX-512 address between 1 and 512. If there is more than one gateway, 1000 must be added to the DMX address for the second gateway, 2000 for the third one and so on

state: numeric - the new value of the channel, from 0 to 255.


Returns:

  • numeric - 1 if successful, 0 if not.

Infrared Control

irtransCommand

irtransCommand(irid, command)

Sends a command to an IRTrans.


An infrared command is composed by the name that identifies the commands database, followed by a comma and the name of the command in the database.

More commands in a sequence can be separated by “;”.

It is possible to insert the special command @N, which introduces a wait time of N milliseconds before sending the next command.

This command:

denon1036,on;@4000;denon1036,tv

sends the “on” command of the “denon-1036” remote, then waits 4 seconds before sending the “tv” command.

Moreover, the special command @0 allows to send IR commands without wait times before sending the next command.

When the @N delay before an IR command is not specified, there will be a default 500ms pause between commands; with @0 this pause will be reduced to 1ms.

For example:

denon,on;@0;nad,on

sends the “on” command of the “denon” remote, immediately followed by the “on” command of the “nad” remote.


Note Every IRTrans can contain a database of several remote controls, and each database stores the list of the distinct IR commands. If the hsyco/ir directory contains a .ccfhex file corresponding to the database name, then the CCF string in the file is used instead of sending the command stored in the IRTrans internal database.


Parameters:

  • irid: string - identifies the IRTrans, as defined with the IRTrans parameter in hsyco.ini
  • command: string - the sequence of IR commands to be sent.


Returns:

  • numeric - 1 if successful, 0 if not.


I/O Servers

ioGet

ioGet(id)

Retrieves the current status of an I/O data point, or a comma-separated list of all data points.

Parameters:

  • id: string - the full data point name, including the I/O server id prefix. Set to "*" to request the list of all data points.


Returns:

  • string - the data point value or comma-separated list of all data points.

ioServersRestart

ioServersRestart(name)

Restarts an I/O server that was previously stopped.

This command has no effect on a running I/O server.

Note Note that this command will return before the I/O server is actually restarted.


Parameters:

  • name: string - the I/O server name.


Returns:

  • numeric - 1 if successful, -1 if the server name is not defined.


ioServersStop

ioServersStop(name)

Stops the execution of an I/O server.

Note Note that this command will return before the I/O server is actually stopped.


Parameters:

  • name: string - the I/O server name.


Returns:

  • numeric - 1 if successful, -1 if the server name is not defined.


ioSet

ioSet(id, value)

Writes to I/O servers variables or data points.


Parameters:

  • id: string - the full data point name, including the I/O server id prefix
  • value: string - the new value.


Leak Detector

The Intelligent Leak Detector is used to generate warning for potential water or other quantities leaks by analyzing any generic flow counter.


The detector should be called at regular intervals, possibly faster than the minimum time needed for the counter to increment its value by one.

It will generate a leak warning when the measured flow remains relatively constant over a certain amount of time.


Note Use this function at your own risk!


The Intelligent Leak Detector uses a correlation algorithm to distinguish between a constant flow and an irregular flow. A relatively constant flow over a certain amount of time is considered as a potential leak and generates a leak event.

In some conditions, also depending on the type of flow counter used, this algorithm could fail from properly and timely recognizing a real leak, or it could generate false leak warnings.

Note Use different names to implement multiple independent leak detectors.


leakDetectorClear

leakDetectorClear(name)

Clears the detector’s internal state.

In normal applications, there is no need to call this method, as the detector automatically clears its state from old data.


Parameters:

  • name: string - leak detector name.


leakDetectorOptions

leakDetectorOptions(name, param, value)

The detector’s logic uses two parameters to set its sensitivity and time base. You can change the defaults to adapt to your specific conditions.

The “period” parameter changes the time base, expressed in seconds. The default is 1200 seconds. The detector generates a warning if the flow deviation constantly remains below the deviation threshold for the time period.

The “deviation” parameter changes the deviation percentage, and should be a number between 1 and 100. The default is 50. Set the period or deviation to 0 to temporarily disable the detector.

Note Small deviation values cause the algorithm to activate leak warnings only when the flow is very constant in time, becoming less susceptible to false alarms, but a value that is too low could miss actual leaks. Larger values could easily generate false alarms.

Both period and deviation parameters can be changed anytime, even when the detector is already processing data.


Parameters:

  • name: string - leak detector name
  • param: string - set to “period” or “deviation”
  • value: numeric - the period or deviation value.


leakDetectorUpdate

leakDetectorUpdate(name, value)

Calls the leak detector passing the current liters counter value.


Parameters:

  • name: string - leak detector name
  • value: numeric - the flow counter value.


Returns:

  • numeric - -1 if the detector status is not changed, 0 if the status has changed to a reset condition, and 1 if the status has changed to a leak condition.

Log

errorLog

errorLog(message)

Generates an error message in the daily log file.


Parameters:

  • message: string - the text of the error message.


fileLog

fileLog(pathname, message)

Appends a generic text message at the end of a file.


Parameters:

  • pathname: string - the file name. You can specify any path, starting from HSYCO’s base directory. If the file or parent directories don’t exist, they will be created automatically
  • message: string - the message that will be appended at the last line of the text file.


messageLog

messageLog(message)

Generates an information message in the daily log file.


Parameters:

  • message: string - the text of the message.

Mail

sendMail

sendMail(to, from, subject, body)

Sends a multipart email message, mixing text and multiple images from cameras, live or recorded.

HSYCO SERVER sends the mail either directly to the recipient’s domain mail server if the SmtpName parameter is not defined in hsyco.ini, or using a specific email account with user authentication and traffic encryption if the SMTP server and account parameters are set.

If the email message is sent directly to the recipient’s domain mail server, you need to ensure that the mail server accepts mail to the destination address being sent with the from address and the public IP of the HSYCO SERVER.

Note HSYCO does not automatically retry sending the message if the destination mail server is not available when the send mail function is called.


Parameters:

  • to: string - a valid email address of the intended recipient. You can optionally specify the destination SMTP server name or IP address by appending :<server name or address to the recipient's email address, for example: john@example.com:192.168.1.1
  • from: string - a valid email address to be used as the sender address
  • subject: string - the message subject
  • body: string array - the message body. To send an ordinary text, just fill the array with the desired text strings. To send an image, append strings with the following format: “cam:cameraname[:seconds_back[:frames_back]]”. For example, “cam:door” sends a live frame from the camera called “door”; “cam:door:0” sends the last recorded frame; “cam:door:2” sends a frame that was recorded two seconds before the last recorded frame and “cam:door:2:5” sends a frame that is 5 frames earlier than the one recorded two seconds before the last recording. To send files as attachments, use the following format: “file:<file name>”. The file path is relative to the HSYCO root directory.


Returns:

  • numeric - 1: message sent; 0: message not sent; -1: other errors, including address errors.


Examples:

... : { sendMail('ulde@hsyco.com', 'test@hsyco.net', 'this is a test', ['Door camera','cam:door:2']); }

sends an email message with body containing a short text and a camera snapshot.

Modbus

For detailed information about the Modbus protocol, and the response PDU formats, you should refer to the MODBUS Application Protocol Specification V1.1b documentation at: http://www.modbus.org/docs/Modbus_Application_Protocol_V1_1b.pdf


modbusReadCoils

modbusReadCoils(name, unit, address, quantity)

Reads the content of a contiguous block of coils in a MODBUS device, using function code 0x01.

Returns a standard response PDU.

If there is a correct response from the device, the first byte is set to 0x01, the second to the byte count of the data part, and the data starts from the third byte.

Note The coils in the response message are packed as one coil per bit of the data field. Status is indicated as 1= ON and 0= OFF. The LSB of the first data byte contains the output addressed in the query. The other coils follow toward the high order end of this byte, and from low order to high order in subsequent bytes. If the returned output quantity is not a multiple of eight, the remaining bits in the final data byte will be padded with zeros (toward the high order end of the byte). The byte count field in the response PDU specifies the quantity of complete bytes of data.


If there is an error, the first byte is set to 0x81 and the second byte to the error code.

This function can be invoked passing a name parameter that represents either a predefined I/O Server, or the host name or IP address of the MODBUS gateway.

When using the gateways’s IP address or name, you can call this function to access gateways that are not defined as I/O servers.


Parameters:

  • name: string - the id of the I/O Server as defined in hsyco.ini, or the host name or IP address and optional port number (address:port) of the MODBUS gateway
  • unit: numeric - the MODBUS slave unit identifier (1 to 247)
  • address: numeric - the starting address of the block of coils
  • quantity: numeric - the quantity of coils you are reading (1 to 2000).


Returns:

  • numeric array - response PDU (the array elements are set to the unsigned decimal value of each byte).

modbusReadDiscreteInputs

modbusReadDiscreteInputs(name, unit, address, quantity)

Reads the content of a contiguous block of discrete inputs in a MODBUS device, using function code 0x02.

Returns a standard response PDU.

If there is a correct response from the device, the first byte is set to 0x02, the second to the byte count of the data part, and the data starts from the third byte.

Note The discrete inputs in the response message are packed as one input per bit of the data field. Status is indicated as 1= ON; 0= OFF. The LSB of the first data byte contains the input addressed in the query. The other inputs follow toward the high order end of this byte, and from low order to high order in subsequent bytes. If the returned input quantity is not a multiple of eight, the remaining bits in the final data byte will be padded with zeros (toward the high order end of the byte). The byte count field of the response PDU specifies the quantity of complete bytes of data.


If there is an error, the first byte is set to 0x82 and the second byte to the error code.

This function can be invoked passing a name parameter that represents either a predefined I/O Server, or the host name or IP address of the MODBUS gateway.

When using the gateways’s IP address or name, you can call this function to access gateways that are not defined as I/O servers.


Parameters:

  • name: string - the id of the I/O Server as defined in hsyco.ini, or the host name or IP address and optional port number (address:port) of the MODBUS gateway
  • unit: numeric - the MODBUS slave unit identifier (1 to 247)
  • address: numeric - the starting address of the block of discrete inputs
  • quantity: numeric - the quantity of discrete inputs you are reading (1 to 2000).


Returns:

  • numeric array - response PDU (the array elements are set to the unsigned decimal value of each byte).

modbusReadHoldingRegisters

modbusReadHoldingRegisters(name, unit, address, quantity)

Reads the content of a contiguous block of holding registers in a MODBUS device, using function code 0x03.

Returns a standard response PDU.

If there is a correct response from the device, the first byte is set to 0x03, the second to the byte count of the data part, and the data starts from the third byte.

If there is an error, the first byte is set to 0x83 and the second byte to the error code.

This function can be invoked passing a name parameter that represents either a predefined I/O Server, or the host name or IP address of the MODBUS gateway.

When using the gateways’s IP address or name, you can call this function to access gateways that are not defined as I/O servers.


Parameters:

  • name: string - the id of the I/O Server as defined in hsyco.ini, or the host name or IP address and optional port number (address:port) of the MODBUS gateway
  • unit: numeric - the MODBUS slave unit identifier (1 to 247)
  • address: numeric - the starting address of the block of registers
  • quantity: numeric - the quantity of registers you are reading (1 to 125).


Returns:

  • numeric array - response PDU (the array elements are set to the unsigned decimal value of each byte).

modbusReadInputRegisters

modbusReadInputRegisters(name, unit, address, quantity)

Reads the content of a contiguous block of input registers in a MODBUS device, using function code 0x04.

Returns a standard response PDU.

If there is a correct response from the device, the first byte is set to 0x04, the second to the byte count of the data part, and the data starts from the third byte.

If there is an error, the first byte is set to 0x84 and the second byte to the error code.

This function can be invoked passing a name parameter that represents either a predefined I/O Server, or the host name or IP address of the MODBUS gateway.

When using the gateways’s IP address or name, you can call this function to access gateways that are not defined as I/O servers.


Parameters:

  • name: string - the id of the I/O Server as defined in hsyco.ini, or the host name or IP address and optional port number (address:port) of the MODBUS gateway
  • unit: numeric - the MODBUS slave unit identifier (1 to 247)
  • address: numeric - the starting address of the block of registers
  • quantity: numeric - the quantity of registers you are reading (1 to 125).


Returns:

  • numeric array - response PDU (the array elements are set to the unsigned decimal value of each byte).

modbusReadWriteMultipleRegisters

modbusReadWriteMultipleRegisters(name, unit, readaddress, readquantity, writeaddress, bytes)

Writes a block of contiguous registers in a MODBUS device, then reads the content of a contiguous block of holding registers, using function code 0x17.

Returns a standard response PDU.

If there is a correct response from the device, the first byte is set to 0x17, the second to the byte count of the data part, and the data starts from the third byte.

If there is an error, the first byte is set to 0x97 and the second byte to the error code.

This function can be invoked passing a name parameter that represents either a predefined I/O Server, or the host name or IP address of the MODBUS gateway.

When using the gateways’s IP address or name, you can call this function to access gateways that are not defined as I/O servers.


Parameters:

  • name: string - the id of the I/O Server as defined in hsyco.ini, or the host name or IP address and optional port number (address:port) of the MODBUS gateway
  • unit: numeric - the MODBUS slave unit identifier (1 to 247)
  • readaddress: numeric - the starting address of the block of registers to read
  • readquantity: numeric - the quantity of registers you are reading (1 to 125)
  • writeaddress: numeric - the starting address of the block of registers to write
  • bytes: numeric array - data to be written in the registers, using big-endian encoding (the most significant byte is sent first), with the array elements set to the unsigned decimal value of each byte.


Returns:

  • numeric array - response PDU (the array elements are set to the unsigned decimal value of each byte).

modbusWriteMaskRegister

modbusWriteMaskRegister(name, unit, address, mask, bytes)

Writes a register with a bit mask in a MODBUS device, using function code 0x16.

Returns a standard response PDU.

If there is a correct response from the device, the first byte is set to 0x16, the next two bytes to the mask and the last two to register value.

If there is an error, the first byte is set to 0x96 and the second byte to the error code.

This function can be invoked passing a name parameter that represents either a predefined I/O Server, or the host name or IP address of the MODBUS gateway.

When using the gateways’s IP address or name, you can call this function to access gateways that are not defined as I/O servers.


Parameters:

  • name: string - the id of the I/O Server as defined in hsyco.ini, or the host name or IP address and optional port number (address:port) of the MODBUS gateway
  • unit: numeric - the MODBUS slave unit identifier (1 to 247)
  • mask: numeric array - the AND mask to be applied to the register
  • bytes: numeric array - data to be written in the register, using big-endian encoding (the most significant byte is sent first), with the array elements set to the unsigned decimal value of each byte.


Returns:

  • numeric array - response PDU (the array elements are set to the unsigned decimal value of each byte).

modbusWriteMultipleCoils

modbusWriteMultipleCoils(name, unit, address, coils, bytes)

Writes multiple coils in a MODBUS device, using function code 0x0F.

Returns a standard response PDU.

If there is a correct response from the device, the first byte is set to 0x0F, the next two to the data address of the first coil, and the last two to the number of coils written.

If there is an error, the first byte is set to 0x8F and the second byte to the error code.

This function can be invoked passing a name parameter that represents either a predefined I/O Server, or the host name or IP address of the MODBUS gateway.

When using the gateways’s IP address or name, you can call this function to access gateways that are not defined as I/O servers.


Parameters:

  • name: string - the id of the I/O Server as defined in hsyco.ini, or the host name or IP address and optional port number (address:port) of the MODBUS gateway
  • unit: numeric - the MODBUS slave unit identifier (1 to 247)
  • address: numeric - the coil’s address
  • coils: numeric - the number of coils to be written
  • bytes: numeric array - The requested ON/OFF states are specified by contents of the request data field, following the same data format defined in the Modbus specification for function 0x0F. A logical '1' in a bit position of the field requests the corresponding output to be ON. A logical '0' requests it to be OFF. The first byte represents coils with the lowest address, with the least significant bit addressing the lowest address coil. The array elements are set to the unsigned decimal value of each byte.


Returns:

  • numeric array - response PDU (the array elements are set to the unsigned decimal value of each byte).

modbusWriteMultipleRegisters

modbusWriteMultipleRegisters(name, unit, address, bytes)

Writes a block of contiguous registers in a MODBUS device, using function code 0x10.

Returns a standard response PDU.

If there is a correct response from the device, the first byte is set to 0x10, the next two bytes to the starting address and the last two to the quantity of registers.

If there is an error, the first byte is set to 0x90 and the second byte to the error code.

This function can be invoked passing a name parameter that represents either a predefined I/O Server, or the host name or IP address of the MODBUS gateway.

When using the gateways’s IP address or name, you can call this function to access gateways that are not defined as I/O servers.


Parameters:

  • name: string - the id of the I/O Server as defined in hsyco.ini, or the host name or IP address and optional port number (address:port) of the MODBUS gateway
  • unit: numeric - the MODBUS slave unit identifier (1 to 247)
  • address: numeric - the starting address of the block of registers
  • bytes: numeric array - data to be written in the registers, using big-endian encoding (the most significant byte is sent first), with the array elements set to the unsigned decimal value of each byte.


Returns:

  • numeric array - response PDU (the array elements are set to the unsigned decimal value of each byte).

modbusWriteSingleCoil

modbusWriteSingleCoil(name, unit, address, value)

Writes a single coil in a MODBUS device, using function code 0x05.

Returns a standard response PDU.

If there is a correct response from the device, the first byte is set to 0x05 and the last two to 0xFF00 if the coil is on, and 0x0000 if the coil is off.

If there is an error, the first byte is set to 0x85 and the second byte to the error code.

This function can be invoked passing a name parameter that represents either a predefined I/O Server, or the host name or IP address of the MODBUS gateway.

When using the gateways’s IP address or name, you can call this function to access gateways that are not defined as I/O servers.


Parameters:

  • name: string - the id of the I/O Server as defined in hsyco.ini, or the host name or IP address and optional port number (address:port) of the MODBUS gateway
  • unit: numeric - the MODBUS slave unit identifier (1 to 247)
  • address: numeric - the coil’s address
  • value: boolean - true to turn the coil on, false to turn it off.


Returns:

  • numeric array - response PDU (the array elements are set to the unsigned decimal value of each byte).

modbusWriteSingleRegister

modbusWriteSingleRegister(name, unit, address, bytes)

Writes a single register in a MODBUS device, using function code 0x06.

Returns a standard response PDU.

If there is a correct response from the device, the first byte is set to 0x06 and the last two to register value.

If there is an error, the first byte is set to 0x86 and the second byte to the error code.

This function can be invoked passing a name parameter that represents either a predefined I/O Server, or the host name or IP address of the MODBUS gateway.

When using the gateways’s IP address or name, you can call this function to access gateways that are not defined as I/O servers.


Parameters:

  • name: string - the id of the I/O Server as defined in hsyco.ini, or the host name or IP address and optional port number (address:port) of the MODBUS gateway
  • unit: numeric - the MODBUS slave unit identifier (1 to 247)
  • address: numeric - the register’s address
  • bytes: numeric array - data to be written in the register, using big-endian encoding (the most significant byte is sent first), with the array elements set to the unsigned decimal value of each byte.


Returns:

  • numeric array - response PDU (the array elements are set to the unsigned decimal value of each byte).

Network Services

ping

ping(host, timeout)

Sends an IP network ping command to the host specified.


Parameters:

  • host: string - the hostname or IP address
  • timeout: numeric - timeout in milliseconds.


Returns:

  • boolean - true if the host is reachable, false otherwise.

urlGet

urlGet(url, user, password)

Sends a GET HTTP or HTTPS request.

The request has a 10 sec. connection timeout, and 30 sec. response timeout.

The HTTP basic or digest access authentication methods are supported.


Parameters:

  • url: string - a full url, including the mandatory http:// or https:// query scheme and optional query string
  • user: string - the user for HTTP authentication (set to null if authentication is not needed)
  • password: string - the password for HTTP authentication (set to null if authentication is not needed).


Returns:

  • string - a string with the HTTP return code, followed by ":" and the response content, or null if a generic error occurred (including malformed URLs).

urlPost

urlPost(url, contenttype, data, user, password)

Sends a POST HTTP or HTTPS request.

The request has a 10 sec. connection timeout, and 30 sec. response timeout.

The HTTP basic or digest access authentication methods are supported.

Note that if contenttype is set to null, you will have to pass all required HTTP headers in the data parameter, including Content-Type and Content-Length, and the mandatory empty line (CRLF only) between the headers and message body. If contenttype is set to the appropriate content type, all headers will be set internally by urlPost() and the data parameter should only contain the actual message body, without the leading empty line, that is added automatically.


Parameters:

  • url: string - a full url, including the mandatory http:// or https:// query scheme and optional query string
  • contenttype: string - the MIME content type of the data being sent (e.g. "application/x-www-form-urlencoded")
  • data: string - the data being sent with the POST request
  • user: string - the user for HTTP authentication (set to null if authentication is not needed)
  • password: string - the password for HTTP authentication (set to null if authentication is not needed).


Returns:

  • string - a string with the HTTP return code, followed by ":" and the response content, or null if a generic error occurred (including malformed URLs).

wakeOnLan

wakeOnLan(broadcast, address)

Sends a Wake on LAN command to the LAN specified in the broadcast.


Parameters:

  • broadcast: string - the LAN broadcast address. For example “192.168.0.255”
  • address: string - the IP or MAC address of the network interface. For example, IP address “192.168.0.1” or MAC address “45-ab-44-00-00-ba”.

Note If the IP address is used to identify the destination interface, HSYCO will try to automatically determine the corresponding MAC address, permanently saving this association27. So, when using the IP address, and only the first time this method is called, the device with have to be on to allow HSYCO to determine the MAC address.


Returns:

  • numeric - 1 if successful, -1 if not.

Public Announcement

The audioPlayFile() and audioPlayText() functions are used to play recorded audio files or text-to-speech messages.

Audio can be sent to the Web browser, the server’s audio line out connector, the internal speaker or audio out line of Axis cameras, SNOM's phones or PA devices, and I/O servers with audio playback capabilities.

See the Audio and Public Announcement section for additional information.

Audio Destination Description
speaker the server’s audio line out connector
web
web@channel
the Web browser’s audio output. "channel" can be the project id or an an arbitrary name assigned to an audio channel set using the "audiochannel" project attribute.

If "*" or no channel is specified, the audio will play on all clients.

Note this feature is supported only on Firefox and Chrome browsers

axis@camera id audio sent to an Axis camera, using the camera id defined in the Cameras parameter in hsyco.ini
axis@host name audio sent to an Axis geric audio device. Use the host name or IP address of the device. The device must allow anonymous commands via HTTP on the default port 80
axis@host:user:password name audio sent to an Axis geric audio device. Use the host name or IP address of the device, authenticating with user and password. The device must allow commands via HTTP on the default port 80
snom@ip:port audio sent to SNOM phones and public announcement devices, to the multicast IP address and port specified (the IP address and port should be configured as multicast addresses on each phone)
io@I/O server id[.zone id] audio sent to I/O servers with audio playback capabilities, e.g. the Sonos I/O server

audioPlayFile

audioPlayFile(where, file)

Plays a pre-recorded audio file.


Parameters:

  • where: string - the audio destination; see the table above
  • file: string - the audio file name pathname, relative to HSYCO's root directory.


Returns:

  • numeric - the index of this message in the play back queue if successful, -1 in case of errors.


audioPlayText

audioPlayText(where, voice, text)

Converts a text message to audio using the installed text-to-speech engine, and plays the audio.


Parameters:

  • where: string - the audio destination; see the table above
  • voice: string - the voice name for the text-to-speech engine; see the Audio and Public Announcement section for additional information
  • text: string - the text message for text-to-speech conversion.


Returns:

  • numeric - the index of this message in the play back queue if successful, -1 in case of errors.

Serial Communication Ports

closeComm

closeComm(portname)

Closes a serial port connection when the serial port is defined ad a “server” type, and is ignored otherwise.

Note When used with serial servers having a fail-over configuration, this method forces a reconnect at the next call of readComm() or writeComm(), so that a switch between the fail-over IPs would happen if the current IP is not responding.


Parameters:

  • portname: string - the name of the communications port, as defined in the CommPorts parameter in hsyco.ini.


readComm

readComm(portname, len)

Reads a sequence of bytes from a communication port.

The number of bytes read depends on the availability of data in the buffer of the communication port, until the maximum number specified in the len parameter.

Note There is a 2 seconds default time-out on reads. If the buffer is empty, this function will wait until the time-out expires before returning.


If len is set to 0, the function doesn’t return data, but it empties the communication port’s buffer from older data.

Note If both verboseLog and userLog are true, the full trace of received and sent bytes is written to the log file.


Parameters:

  • portname: string - the name of the communications port, as defined in the CommPorts parameter in hsyco.ini
  • len: numeric - maximum number of bytes to be read from the port, or 0 to empty the buffer without reading data.


Returns:

  • string - null in case of errors, a string with the hexadecimal representation of the received byte sequence, or an empty string if the incoming data buffer is empty. For example “45AB4400BA”.

writeComm

writeComm(portname, data)

Sends a sequence of bytes to a communication port.

Note If both verboseLog and userLog are true, the full trace of received and sent bytes is written to the log file.


Parameters:

  • portname: string - the name of the communications port, as defined in the CommPorts parameter in hsyco.ini
  • data: string - a string with the hexadecimal representation of the sequence of bytes to be sent. For example “45AB4400BA”.


Returns:

  • numeric - the number of bytes sent if successful, or 0 in case of errors.


Squeezebox

slimButton

slimButton(player, button)

Controls the Squeezebox players, simulating a remote control button.


Parameters:

  • player: string - the Squeezebox name, as listed in the slimPlayers parameter in hsyco.ini
  • button: string - the Squeezebox command.


Returns:

  • numeric - 1 if successful, 0 otherwise.

slimCommand

slimCommand(player, command)

Sends commands to the Squeezebox players.


Parameters:

  • player: string - the Squeezebox name, as listed in the slimPlayers parameter in hsyco.ini
  • command: string - the Squeezebox command.


Returns:

  • string - the protocol answer to the command if successful, or null in case of errors.


Timers and Schedulers

userTimerSet

userTimerSet(timerid, on, hour, minute, duration, days)

Sets a user timer.


Parameters:

  • on: boolean - true enables the timer; false disables the timer; null leaves the mode unchanged
  • hour: number - start hour, from 0 to 23; null leaves the start hour unchanged
  • minute: number - start minute, from 0 to 59; null leaves the start minute unchanged
  • duration: number - duration in minutes, from 0 to 1439; null leaves the duration unchanged
  • days: string - activation days, as a string of up to 7 characters from 1 to 7, 1 is Monday, 7 is Sunday; null or empty string leaves the days unchanged.


Returns:

  • boolean - true if successful.

User Interface

All identified UI objects support dynamic attributes that can be changed at run-time.

The primary commands used to set dynamic attributes are the UISET action in EVENTS, and the uiSet() Java and JavaScript function.


Set levels

You can set dynamic attributes at different levels:

  • global, using UISET and not specifying any session information - will set the attribute to the desired value for all clients
  • client session, using UISESSIONSET on USER and PAGE events, or uiSessionSet(session, id, attr, value) in JavaScript and uiSet(String session, String id, String attr, String value) in Java - will set the attribute for a single specific client session
  • application scope, using uiSessionSet(session, id, attr, value) in JavaScript and uiSet(String session, String id, String attr, String value) in Java - will set the attribute only for projects and pages that are explicitly bound (subscribed) to the same scope. You can use any string literal to identify a scope, and simply use that string in the session parameter of uiSet or uiSessionSet, instead of the client session id.


Priority rules

Overlapping global, session or scope UI attributes set on the same object is possible. In this case, a session set has the highest priority, followed by global set and finally the scope set. So, if you have a scope set on an object, and a global set is called on the same attribute of the same object, this global set will override the scope set. A session set will override both the scope and global set.


Session lifetime

While a global set will last until HSYCO is restarted, the client sessions have a limited lifetime.

Basically a client session is created whenever you load a URL pointing to an HSYCO project, and is automatically cleared after one hour of inactivity, where session activity is defined as the client being actively connected to the HSYCO server.

Scopes also have the same lifetime of client sessions, but activity in this case is defined as at least one client that is showing a page or project that is bound to the scope.

You can also create persistent scopes, simply using scope literals ending with the ! character. Persistent scopes will not follow be cleared, even after prolonged inactivity, and will last until HSYCO is restarted.

uiClear

uiClear(session)

Removes all session specific UI object attributes set with uiSet().

uiClear() is also implicitly called after the client session inactivity timeout expires.

The uiClearEvent() callback is called following the uiClear() execution if the client session becomes active again (i.e. the client starts handshaking again with the server with the same session id).


Parameters:

  • session: string - session id string that uniquely identifies the client session.


uiGet

uiGet(id, attr)

Gets the current value of an attribute of an identified UI object, set with the uiSet() function or the UISET action in EVENTS.


Parameters:

  • id: string - object id
  • attr: string - attribute name.


Returns:

  • string - the current value of the attribute of an identified UI object, or null if the object attribute has not been set.


uiSessionGet

uiSessionGet(session, id, attr)

Gets the session-specific value of an attribute of an identified UI object, set with the uiSessionSet() function or the UISESSIONSET action in EVENTS


Parameters:

  • id: string - object id
  • attr: string - attribute name.


Returns:

  • string - the session value of the attribute of an identified UI object, or null if the object attribute has not been set.


uiSessionSet

uiSessionSet(session, id, attr, value)

Changes the dynamic attributes of identified user interface (UI) objects for a specific client session.


Note Session specific attributes values will override values set globally.

Calling this method with a null value, if a global UI value exists, removes the session value and restores the global one. Passing a null value has no effect if there is no previous session UI value, or no global UI value exists.

id is the unique name that identifies the object, specified in the index.hsm file with the extension !id after the object type.


Parameters:

  • id: string - object id
  • attr: string - attribute name
  • value: string - attribute value, or null to remove a previously set session value.

uiSet

uiSet(id, attr, value)

Changes the dynamic attributes of the identified user interface (UI) objects.

id is the unique name that identifies the object, specified in the index.hsm file with the extension !id after the object type.


Parameters:

  • id: string - object id. You can also target all objects of a type by specifying as id "(<object's type>)" (e.g. "uiSet("(user)", "fontweight", "bold") will target all user objects)
  • attr: string - attribute name
  • value: string - attribute value.

uiLink

static void uiLink(source, target)

Creates a symbolic link under the www directory to another existing directory under the HSYCO home directory. Any access to UI files with a path corresponding to "source" will be searched in the "target" directory instead.

Note Note that a symbolic link has lower priority over existing files. If a file exists, a matching symbolic link will be ignored.

Parameters:

  • source: string - the original path under the www directory to be linked to the target path
  • target: string - the target path of the symbolic link, can be any existing directory in the HSYCO home directory. Set to null to remove the link.


For example, if "resources/myimages" is a valid path under the HSYCO home directory, the following command:

uiLink("myproject/img", "resources/myimages");

allows to make image files in the resources/myimages directory accessible to image objects defined in the myproject UI project, as if they where saved in a real www/myproject/img directory.

user

user(name, param)

Triggers a USER event, the execution of the userCommand() JavaScript function and of the userCommand() Java method.

It can be used as a calling mechanism between Java, JavaScript and EVENTS.


Parameters:

  • name: string - the name parameter, passed to userCommand() and the USER event
  • param: string -the param parameter, passed to userCommand() and the USER event.