Eine Automatisierung kann sich auf Geräte mit mehreren Teilen beziehen, ähnlich wie eine Automatisierung, die keine Geräte mit mehreren Teilen verwendet.
Zuerst müssen Sie die Komponente(n) wie gewohnt abrufen. Unter Geräte mit mehreren Teilen erfahren Sie, wie Sie mit Geräten mit mehreren Teilen arbeiten.
Erstellen Sie dann für jeden Teil, den Sie in Ihrer Automatisierung verwenden möchten, einen
AutomationPartPath,
So können Sie in Automatisierungsstartern, ‑bedingungen und
aktionen auf den Teil verweisen.
// 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())
Außerdem ist zu beachten, dass Automatisierungsaktionen in der Regel ein Gerät und einen Gerätetyp als Parameter verwenden. Für eine Automatisierungsaktion, die auf ein
Gerät mit einem Teil verweist (wieder mit einem AutomationPartPath), ist jedoch nur der
AutomationPartPath erforderlich, da er neben dem Verweis auf das Komponentengerät auch einen
Verweis auf den Gerätetyp enthält.AutomationPartPath
In der Automation API kann beispielsweise der Gerätetyp Refrigerator als Gerät mit mehreren Teilen behandelt werden. Er besteht aus einem RefrigeratorDevice als Stammelement, das mehrere Unterteile enthalten kann, z. B. Gefrierschränke oder Standardschränke vom Typ TemperatureControlledCabinetDevice.
Für Automatisierungen für Kühlschränke interagieren Sie hauptsächlich mit zwei Standard Matter Merkmalen:
RefrigeratorAlarm: Gibt Alarme zum Türstatus über das AttributdoorOpendes Feldsstateaus.RefrigeratorAndTemperatureControlledCabinetMode: Ermöglicht das Lesen und Steuern von Modi. Beispielsweise können Sie Befehle wiechangeToModeausführen, um zu Modi wieLowEnergy,RapidCooloderLowNoisezu wechseln.
Diese Beispielautomatisierung wird ausgelöst, wenn die Kühlschranktür geöffnet wird. Wenn die Tür länger als zwei Minuten offen bleibt, sendet die Automatisierung eine Sprachbenachrichtigung auf Smart Speakern, lässt die Küchenlampen blinken und sendet eine Push-Benachrichtigung. Diese Automatisierung wirkt sich nur auf das Kühlschrankfach des Geräts aus und ignoriert das Gefrierfach (falls vorhanden):
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" }
))
}
}
}
}
Im folgenden Beispiel wird der Kühlschrank in den Modus „Niedriger Energieverbrauch“ versetzt, wenn erkannt wird, dass niemand zu Hause ist.
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))
}
}
}