KULVEX HomeScenes & Automations

Scenes & Automations

Scenes

Scenes are saved presets that control multiple devices at once.

Built-in Scenes

SceneActions
Good MorningLights on warm, blinds open, coffee machine on
Movie NightLights dim, TV backlight on, blinds close
Good NightAll lights off, doors locked, alarm armed
AwayLights off, thermostat eco, cameras active

Creating Scenes

In the dashboard: Home > Scenes > New Scene

Or via chat: “Create a scene called ‘Reading’ that dims the living room to 40% and turns on the desk lamp”

API

# List scenes
curl http://localhost:9100/api/home/scenes
 
# Activate a scene
curl -X POST http://localhost:9100/api/home/scenes/movie-night/activate

Automations

Automations run actions based on triggers.

Trigger Types

TriggerExample
Time”Every day at 7am”
Sensor”When motion detected in hallway”
Presence”When everyone leaves home”
Solar”When solar production exceeds 3kW”
Device state”When front door opens”

Creating Automations

Via chat: “When I leave home, turn off all lights and arm the alarm”

Or in the dashboard: Home > Automations > New

Example

{
  "name": "Night lights",
  "trigger": { "type": "time", "at": "22:00" },
  "conditions": [
    { "type": "presence", "state": "home" }
  ],
  "actions": [
    { "entity": "light.living_room", "action": "dim", "brightness": 20 },
    { "entity": "light.hallway", "action": "off" }
  ]
}