تشغيل أجهزة متعددة آليًا على Android

يمكن أن يشير التشغيل الآلي إلى الأجهزة المتعدّدة الأجزاء بطريقة مشابهة للتشغيل الآلي الذي لا يستخدم أجهزة متعدّدة الأجزاء.

أولاً، احصل على جزء أو أجزاء المكوّن كما تفعل عادةً. اطّلِع على الأجهزة المتعدّدة الأجزاء لمعرفة كيفية استخدام الأجهزة المتعدّدة الأجزاء.

بعد ذلك، لكل جزء تريد استخدامه في التشغيل الآلي، أنشئ 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 يحتوي على مرجع لنوع الجهاز بالإضافة إلى مرجع جهاز المكوّن.

على سبيل المثال، في Automation API، يمكن التعامل مع نوع الجهاز Refrigerator كجهاز متعدّد الأجزاء. يتألف من RefrigeratorDevice أساسي يمكن أن يحتوي على خزائن فرعية متعدّدة، مثل المجمدات أو الخزائن العادية من النوع TemperatureControlledCabinetDevice.

لإنشاء إجراءات مبرمَجة للثلاجة، يمكنك التفاعل بشكل أساسي مع سمتَين عاديتَين من Matter 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))
    }
  }
}