mqscript_device_setbrightness
Adjust screen brightness on mobile devices by specifying a level from 0 to 255 for automation scripts.
Instructions
Set screen brightness
Input Schema
Name | Required | Description | Default |
---|---|---|---|
brightness | Yes | Brightness level (0-255) |
Input Schema (JSON Schema)
{
"properties": {
"brightness": {
"description": "Brightness level (0-255)",
"maximum": 255,
"minimum": 0,
"type": "number"
}
},
"required": [
"brightness"
],
"type": "object"
}