modificar_habitacion
Update an existing room name and automatically sync the change across all connected smart devices in your home automation system.
Instructions
Modifica el nombre de una habitación existente. Actualiza automáticamente todos los dispositivos asociados.
Args: old_name: nombre actual de la habitación new_name: nuevo nombre para la habitación
Returns: Confirmación con ambos nombres (antiguo y nuevo).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| old_name | Yes | ||
| new_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"new_name": {
"title": "New Name",
"type": "string"
},
"old_name": {
"title": "Old Name",
"type": "string"
}
},
"required": [
"old_name",
"new_name"
],
"type": "object"
}