pwm
Adjust PWM frequency to a specified value (0-100) using MCP2TCP, enabling precise control of hardware devices through natural language commands.
Instructions
把PWM调到最大 (frequency=100)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
frequency | Yes | Parameter frequency for the pwm command |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"frequency": {
"description": "Parameter frequency for the pwm command",
"examples": [
"请将PWM设置为value (0-100的整数)"
],
"type": "string"
}
},
"required": [
"frequency"
],
"type": "object"
}