get_device_available_controls
Retrieve available control commands and parameter information for specific LG ThinQ devices to enable device management and operation.
Instructions
Retrieves available control commands and parameter information for a specific device Args: device_type: Device type (e.g., DEVICE_AIR_CONDITIONER, DEVICE_ROBOT_CLEANER, DEVICE_STYLER) device_id: Unique ID of the device to query
Returns:
String containing device control commands and parameter information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device_id | Yes | ||
device_type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"device_id": {
"title": "Device Id",
"type": "string"
},
"device_type": {
"title": "Device Type",
"type": "string"
}
},
"required": [
"device_type",
"device_id"
],
"type": "object"
}