![]() | ![]() | |
Make/Model | Device Version | Connection Type |
Vantage Q Series | N/A | RS-232 |
This driver controls the Vantage ‘Q’ Series Master Controller. The Vantage system is a hard-wired lighting control system that supports wired and wireless lighting control systems, as well as integration of other devices such as thermostats, 12v relays and IR emitters. While the system could potentially be used for a wireless lighting control system in a retrofit application, its primary applications are as a hardwired lighting control system.
Lighting loads are referenced through the driver based on a value Vantage refers to as the “Contractor Number.” This is a unique numeric value that is assigned to each individual lighting circuit when the system is programmed in the Vantage Q-Link software. To effectively use the driver from CQC, you must know what contractor numbers are associated with what lighting circuits in the installation.
Important Note: Be sure you understand the configuration of the attached lighting control system, particularly when hardware like reversing drapery motors are installed. Make sure opposing motors are not energized at the same time. Interlock conditions in the Vantage controller are specified at the switching level, not the load level at which the CQC driver operates. This means the driver bypasses these protections and it is possible to enable circuits that Vantage switches are programmed to operate exclusive of one another.
The driver currently only supports manipulation of lighting loads. Switch presses and other events are not reported at the driver level. Thermostat and IR integration are not directly supported, although Vantage “V-Commands” that can control devices connected to the Vantage controller can be passed from CQC through the driver. These are treated as “one-way” commands and no status is returned.
The device uses an RS-232 serial connection running at 19200bps, 8 data bits, no parity, one stop bit, which is the default hardware settings at the device.
This section lists the fields that the driver makes available. In some instances, a portion of the name has been omitted and replaced by an ‘X’ signifying either a load number. In these instances the driver creates one or more fields as required.
Name
Type
R/W
Description/Limits LoadNameX
String
R
Provides the name of contractor load X as programmed by the Q-Link software.
LoadX
Card4
R/W
Provides the current value of contractor load X, and allows that load to be changed. When a new value is set, the FadeTime field determines how quickly the controller will ramp to the new setting. Allowed values are between 0 and 100.
FadeTime
Card4
R/W
Exposes an internal driver field used as the default time value (in seconds) to fade in/out changes to a load.
Command
String
W
Passes a ‘V-Command’ directly to the controller.
DriverCommand
String
W
Provides support for setting multiple loads through the driver. See the command description below for more details.
The DriverCommand field allows for multiple loads to be adjusted as a function of a single field write action from CQC. Commands have the following basic syntax:
<command> [Load[:Value[:Fade]]] [,[Load[:Value[:Fade]]] … ]…which allows for individual loads to be specified each with their own distinct lighting value and ramp times. The following commands are currently supported:
Command
Description TurnOn
Turns on one or more loads. May also be used to turn off loads by explicitly specifying a value of ‘0’. If the fade value is not specified, the current value of the FadeTime is used.
TurnOff
Turns off one or more loads. May also be used to turn off loads by explicitly specifying a value for the load greater then zero. If the fade value is not specified, the current value of the FadeTime is used.
AllOff
Turns off all loads. Load parameters are ignored.
Examples:
TurnOn 101This command would turn on load 101 at 100% power using the current FadeTime rate.
TurnOn 101:40This command would turn on load 101 at 40% power using the current FadeTime rate.
TurnOn 101:40:5This command would turn on load 101 at 40% power using 5 as the fade rate.
TurnOn 101,102,103:50This command would turn on loads 102 and 103 at 100% power, and load 103 at 50% power using the current FadeTime rate.
TurnOff 101,102,103,201:10This command would turn off loads 101,102 and 103 using the current FadeTime rate. Also, load 201 would be turned on to 10% power.