ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Domotics functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Switches on one or more electrical devices compatible with the X10. protocol.
Remark: In order for the X10 protocol to operate properly through power-line carrier, continuous power is required between the devices. For example, the transmission cannot pass through an insulation transformer.
Example
// Open the X10 connection
ConnectionID is int
ConnectionID = DomoOpen("COM4", "A")  
// Switch on the lamps connected to the A3 and A4 modules
DomoSwitchOn(ConnectionID, "A3 A4")
// Equivalent to: DomoSend(ConnectionID, "A3 A4", domoOn)
...
// Switch off the lamps
DomoSwitchOff(ConnectionID, "A3 A4")
Syntax
<Result> = DomoSwitchOn(<Connection identifier> , <Address>)
<Result>: Boolean
  • True if the electrical devices have been switched on,
  • False otherwise (transmission error, device did not respond, etc.). If an error occurs, use ErrorInfo with the errMessage constant to get more details on the error.
<Connection identifier>: Integer
Identifier of the connection to use. This identifier is defined by DomoOpen.
<Address>: Character string
Address of the electrical devices (compatible with the X10 protocol) that must be switched on.
The address format is as follows:
<House code><Module code>
Where:
  • <House code> corresponds to a letter found between A and P.
  • <Module code> corresponds to a number found between 1 and 16.
For example: "A1", "B14".
To specify several addresses, the addresses must be separated by a space character. For example: "A1 A3 B15".
Component: wd290com.dll
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help