اتوماسیون دستگاه‌های چندبخشی در اندروید

یک اتوماسیون ممکن است به دستگاه‌های چندبخشی مشابه اتوماسیونی که از دستگاه‌های چندبخشی استفاده نمی‌کند، ارجاع دهد.

ابتدا، قطعه(های) تشکیل‌دهنده را طبق معمول تهیه کنید. برای نحوه کار با دستگاه‌های چندبخشی، به دستگاه‌های چندبخشی مراجعه کنید.

سپس، برای هر بخشی که می‌خواهید در اتوماسیون خود استفاده کنید، یک AutomationPartPath ایجاد کنید که به شما امکان می‌دهد آن بخش را در شروع‌کننده‌ها، شرط‌ها و اقدامات اتوماسیون ارجاع دهید.

// Obtain a reference to the device:
val multipartDevices = structure.devices(enableMultipartDevices = true).first().toList()

val lights = multipartDevices.filter { it.has(OnOffLightDevice) && it.has(OnOff) }

val light = lights.first()

// get the AutomationPartPath for the device
val lightPartPath = light.automationPart(light.part(OnOffLightDevice).first())

نکته‌ی دیگری که باید به آن توجه کرد این است که اکشن‌های اتوماسیون معمولاً یک دستگاه و یک نوع دستگاه را به عنوان پارامتر دریافت می‌کنند. با این حال، یک اکشن اتوماسیون که به یک دستگاهِ قطعه‌ی تشکیل‌دهنده‌ی قطعه ارجاع می‌دهد - باز هم با استفاده از AutomationPartPath - فقط به AutomationPartPath نیاز دارد، زیرا AutomationPartPath از قبل علاوه بر ارجاع به دستگاهِ قطعه، شامل ارجاعی به نوع دستگاه نیز هست.

برای مثال، در API اتوماسیون، یک نوع دستگاه Refrigerator ممکن است به عنوان یک دستگاه چندبخشی در نظر گرفته شود. این دستگاه شامل یک RefrigeratorDevice ریشه است که می‌تواند شامل چندین کابینت زیربخشی مانند فریزر یا کابینت‌های استاندارد از نوع TemperatureControlledCabinetDevice باشد.

برای ساخت اتوماسیون یخچال، شما در درجه اول با دو ویژگی استاندارد Matter تعامل دارید:

  • RefrigeratorAlarm : آلارم‌های وضعیت درب را از طریق ویژگی doorOpen در فیلد state نمایش می‌دهد.
  • RefrigeratorAndTemperatureControlledCabinetMode : حالت‌های خواندن و دستور دادن را امکان‌پذیر می‌کند. برای مثال، اجرای دستوراتی مانند changeToMode برای تغییر به حالت‌هایی مانند LowEnergy ، RapidCool یا LowNoise .

این مثال اتوماسیون زمانی فعال می‌شود که درب یخچال باز شود. اگر درب بیش از دو دقیقه باز بماند، اتوماسیون یک اعلان صوتی را روی بلندگوهای هوشمند پخش می‌کند، چراغ‌های آشپزخانه را روشن می‌کند و یک اعلان فوری ارسال می‌کند. توجه داشته باشید که این اتوماسیون فقط بر روی محفظه یخچال دستگاه تأثیر می‌گذارد و محفظه فریزر (در صورت وجود) را نادیده می‌گیرد:

import com.google.home.automation.action
import com.google.home.automation.automation
import com.google.home.automation.condition
import com.google.home.automation.equals
import com.google.home.automation.starter
import com.google.home.google.AssistantBroadcast
import com.google.home.google.Notification
import com.google.home.matter.standard.OnOff
import com.google.home.matter.standard.OnOffLightDevice
import com.google.home.matter.standard.RefrigeratorAlarm
import com.google.home.matter.standard.RefrigeratorAlarm.Companion.state
import com.google.home.matter.standard.RefrigeratorDevice
import com.google.home.matter.standard.SpeakerDevice
import java.time.Duration

val structure: Structure = home.structures().first()

// Fetch devices using the multipart device model.
var multipartDevices = homeManager.devices(enableMultipartDevices = true)

// Obtain a reference to the refrigerator device.
val refrigeratorDevice = multipartDevices.first {
  it.has(TemperatureControlledCabinetDevice) &&
  it.has(RefrigeratorAndTemperatureControlledCabinetMode) &&
  it.has(RefrigeratorAlarm)
}

// Get all temperature-controlled cabinet parts of the refrigerator
val cabinets = refrigeratorDevice.parts(TemperatureControlledCabinetDevice)

// Find the cabinet part with the 'refrigerator' semantic tag
val refrigeratorCabinet = cabinets.firstOrNull {
  it.metadata.tags.contains(SemanticTag.Refrigerator.refrigerator)
}

val cabinetPartPath = refrigeratorCabinet.automationPath(TemperatureControlledCabinetDevice)

val speaker = home.devices().list().first { device -> device.has(SpeakerDevice) }

val refrigeratorDoorAlert = automation {
  name = "Refrigerator Door Open Alert"
  description = "Warn when the refrigerator door has been open for over 2 min"
  isActive = true

  sequential {
    // 1. Starter: Monitor the refrigerator door alarm trait
    val alarmStarter = starter<_>(cabinetPartPath, RefrigeratorAlarm)

    // 2. Condition: Ensure the 'doorOpen' alarm remains active for 2 continuous min
    condition {
      expression = alarmStarter.state.doorOpen equals true
      forDuration(Duration.ofMinutes(2))
    }

    // 3. Actions: Execute parallel reactions
    parallel {
      // Broadcast warning to household speakers
      action(speaker, SpeakerDevice) {
        command(AssistantBroadcast.broadcast("The refrigerator door has been left open!"))
      }

      // Push a notification alerts to home members' mobile devices
      action(structure) {
        command(Notification.sendNotifications(
          "Fridge Alert",
          { body = "The refrigerator door has been open for over 2 min" }
        ))
      }
    }
  }
}

مثال زیر وقتی یخچال تشخیص می‌دهد که کسی در خانه نیست، آن را به حالت کم‌مصرف تغییر می‌دهد.

import com.google.home.automation.action
import com.google.home.automation.automation
import com.google.home.automation.condition
import com.google.home.automation.equals
import com.google.home.automation.starter
import com.google.home.google.AreaPresenceState
import com.google.home.google.AreaPresenceState.Companion.presenceState
import com.google.home.google.AreaPresenceStateTrait.PresenceState
import com.google.home.matter.standard.RefrigeratorAndTemperatureControlledCabinetMode
import com.google.home.matter.standard.RefrigeratorAndTemperatureControlledCabinetMode.Companion.changeToMode
import com.google.home.matter.standard.RefrigeratorDevice
import com.google.home.matter.standard.TemperatureControlledCabinetDevice

val structure: Structure = home.structures().first()

// Fetch devices using the multipart device model.
var multipartDevices = homeManager.devices(enableMultipartDevices = true)

// Obtain a reference to the refrigerator device.
val refrigeratorDevice = multipartDevices.first {
  it.has(TemperatureControlledCabinetDevice) &&
  it.has(RefrigeratorAndTemperatureControlledCabinetMode) &&
  it.has(RefrigeratorAlarm)
}

val refrigeratorPartPath = refrigeratorDevice.automationPart(refrigeratorDevice.part(RefrigeratorDevice).first())

// Get all temperature-controlled cabinet parts of the refrigerator
val cabinets = refrigeratorDevice.parts(TemperatureControlledCabinetDevice )

// Find the cabinet part with the 'refrigerator' semantic tag
val refrigeratorCabinet = cabinets.firstOrNull {
  it.metadata.tags.contains(SemanticTag.Refrigerator.refrigerator)
}

val refrigeratorEcoMode = automation {
  name = "Refrigerator Eco Mode"
  description = "Automatically changes refrigerator to low energy mode when house is vacant."
  isActive = true

  sequential {
    // 1. Starter: Monitor household presence changes
    val presenceStarter = starter<_>(structure, AreaPresenceState)

    // 2. Condition: Verify presence state transitions to vacant
    condition {
      expression = presenceStarter.presenceState equals PresenceState.PresenceStateVacant
    }

    // 3. Action: Set refrigerator cabinet Mode to 'Low Energy' (e.g. Mode 1u)
    action(refrigeratorPartPath {
      command(RefrigeratorAndTemperatureControlledCabinetMode.changeToMode(1u))
    }
  }
}