update-config
Modify configuration settings for specific NodeMCU/ESP8266 IoT devices remotely via the NodeMCU MCP Service, ensuring efficient device management and control.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | Yes | Configuration parameters to update | |
deviceId | Yes | The ID of the device to update configuration for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"config": {
"additionalProperties": {},
"description": "Configuration parameters to update",
"type": "object"
},
"deviceId": {
"description": "The ID of the device to update configuration for",
"type": "string"
}
},
"required": [
"deviceId",
"config"
],
"type": "object"
}