version: "1.0"
name: "Small Apartment"
description: "Typical 1-bedroom apartment with essential smart home devices"

rooms:
  - id: living-room
    name: "Living Room"
    category: living_room
  - id: bedroom
    name: "Bedroom"
    category: bedroom
  - id: bathroom
    name: "Bathroom"
    category: bathroom
  - id: kitchen
    name: "Kitchen"
    category: kitchen
  - id: hallway
    name: "Hallway"
    category: hallway

devices:
  # Living Room
  - id: "a0000001-0001-4000-8000-000000000001"
    name: "Living Room Ceiling Light"
    category: lighting
    room: living-room
    lighting_role: main
    auto_simulate: true
    simulate_interval: 15000
    channels:
      - category: light
        properties:
          - id: "a0000001-0001-4000-8000-000000000010"
            category: on
            value: true
          - id: "a0000001-0001-4000-8000-000000000011"
            category: brightness
            value: 80
      - category: device_information
        properties:
          - category: manufacturer
            value: "FastyBird"
          - category: model
            value: "SIM-Light-01"

  - name: "Living Room Climate Sensor"
    category: sensor
    room: living-room
    auto_simulate: true
    simulate_interval: 30000
    channels:
      - category: temperature
        properties:
          - category: temperature
            value: 22.5
      - category: humidity
        properties:
          - category: humidity
            value: 45
      - category: device_information
        properties:
          - category: manufacturer
            value: "FastyBird"

  - id: "a0000001-0001-4000-8000-000000000002"
    name: "Smart TV"
    category: television
    room: living-room
    behavior_mode: realistic
    channels:
      - category: television
        properties:
          - id: "a0000001-0001-4000-8000-000000000020"
            category: on
            value: false
      - category: speaker
        properties:
          - category: volume
            value: 30
          - category: active
            value: true
      - category: device_information
        properties:
          - category: manufacturer
            value: "FastyBird"

  # Bedroom
  - id: "a0000001-0001-4000-8000-000000000003"
    name: "Bedroom Light"
    category: lighting
    room: bedroom
    lighting_role: main
    auto_simulate: true
    channels:
      - category: light
        properties:
          - id: "a0000001-0001-4000-8000-000000000030"
            category: on
            value: false
          - id: "a0000001-0001-4000-8000-000000000031"
            category: brightness
            value: 50
      - category: device_information
        properties:
          - category: manufacturer
            value: "FastyBird"

  - name: "Bedroom Motion Sensor"
    category: sensor
    room: bedroom
    auto_simulate: true
    simulate_interval: 10000
    channels:
      - category: motion
        properties:
          - category: detected
            value: false
      - category: device_information
        properties:
          - category: manufacturer
            value: "FastyBird"

  # Bathroom
  - name: "Bathroom Light"
    category: lighting
    room: bathroom
    lighting_role: main
    channels:
      - category: light
        properties:
          - category: on
            value: false
      - category: device_information
        properties:
          - category: manufacturer
            value: "FastyBird"

  - name: "Bathroom Humidity Sensor"
    category: sensor
    room: bathroom
    auto_simulate: true
    channels:
      - category: humidity
        properties:
          - category: humidity
            value: 55
      - category: device_information
        properties:
          - category: manufacturer
            value: "FastyBird"

  # Kitchen
  - name: "Kitchen Outlet"
    category: outlet
    room: kitchen
    auto_simulate: true
    simulate_interval: 20000
    channels:
      - category: outlet
        properties:
          - category: on
            value: true
      - category: electrical_power
        properties:
          - category: power
            value: 150.5
      - category: device_information
        properties:
          - category: manufacturer
            value: "FastyBird"

  # Hallway
  - id: "a0000001-0001-4000-8000-000000000004"
    name: "Front Door Lock"
    category: lock
    room: hallway
    behavior_mode: realistic
    channels:
      - category: lock
        properties:
          - id: "a0000001-0001-4000-8000-000000000040"
            category: status
            value: "locked"
      - category: device_information
        properties:
          - category: manufacturer
            value: "FastyBird"

  - name: "Hallway Motion Sensor"
    category: sensor
    room: hallway
    auto_simulate: true
    simulate_interval: 5000
    channels:
      - category: motion
        properties:
          - category: detected
            value: false
      - category: device_information
        properties:
          - category: manufacturer
            value: "FastyBird"

scenes:
  - name: "Movie Night"
    category: movie
    room: living-room
    actions:
      - device_id: "a0000001-0001-4000-8000-000000000001"
        property_id: "a0000001-0001-4000-8000-000000000011"
        value: 20
      - device_id: "a0000001-0001-4000-8000-000000000002"
        property_id: "a0000001-0001-4000-8000-000000000020"
        value: true
      - device_id: "a0000001-0001-4000-8000-000000000003"
        property_id: "a0000001-0001-4000-8000-000000000030"
        value: false

  - name: "Good Night"
    category: night
    actions:
      - device_id: "a0000001-0001-4000-8000-000000000001"
        property_id: "a0000001-0001-4000-8000-000000000010"
        value: false
      - device_id: "a0000001-0001-4000-8000-000000000003"
        property_id: "a0000001-0001-4000-8000-000000000030"
        value: false
      - device_id: "a0000001-0001-4000-8000-000000000004"
        property_id: "a0000001-0001-4000-8000-000000000040"
        value: "locked"
