থার্মোস্ট্যাট ডিভাইসের ধরনটি বেশ কয়েকটি হোম API বৈশিষ্ট্য ব্যবহার করে প্রয়োগ করা যেতে পারে, তবে প্রাথমিক বৈশিষ্ট্যটি হল Thermostat
। নিম্নলিখিত থার্মোস্ট্যাট ডিভাইসগুলির জন্য প্রয়োজনীয় এবং ঐচ্ছিক বৈশিষ্ট্যগুলি রয়েছে৷
হোম এপিআই ডিভাইসের ধরন | বৈশিষ্ট্য | নমুনা অ্যাপ | কেস ব্যবহার করুন |
---|---|---|---|
তাপস্থাপকএকটি ডিভাইস যা তাপমাত্রা, আর্দ্রতা বা দখলের জন্য অন্তর্নির্মিত বা পৃথক সেন্সর থাকতে সক্ষম এবং পছন্দসই তাপমাত্রা সেট করার অনুমতি দেয়। একটি থার্মোস্ট্যাট একটি হিটিং/কুলিং ইউনিটে (উদাহরণস্বরূপ, একটি ইনডোর এয়ার হ্যান্ডলার) হিটিং এবং/অথবা শীতল করার প্রয়োজনীয়তার বিজ্ঞপ্তি পাঠাতে সক্ষম বা একটি গরম বা শীতল ইউনিটকে সরাসরি নিয়ন্ত্রণ করার জন্য একটি প্রক্রিয়া অন্তর্ভুক্ত করতে সক্ষম। | প্রয়োজনীয় বৈশিষ্ট্য বিষয় চিহ্নিত করুন ব্যাপার থার্মোস্ট্যাট | তাপস্থাপক |
অটোমেশন API সমর্থন
নিম্নলিখিত থার্মোস্ট্যাট বৈশিষ্ট্য এবং উপাদানগুলি অটোমেশন API-এ সমর্থিত।
পরিবেষ্টিত তাপমাত্রা পান
থার্মোস্ট্যাট ব্যবহার করে পরিবেষ্টিত তাপমাত্রা পান
Thermostat
বৈশিষ্ট্য ব্যবহার করে তাপস্থাপকের পরিবেষ্টিত তাপমাত্রা পেতে, localTemperature
বৈশিষ্ট্যটি পড়ুন।
ডিভাইস API
// Get the ambient temperature val thermostat = home.devices().list().first { device -> device.has(Thermostat) } val thermostatTraitFlow: Flow<Thermostat?> = thermostat .type(ThermostatDevice) .mapNotNull { it.standardTraits.thermostat } .distinctUntilChanged() val localTempFlow = thermostatTraitFlow.mapNotNull { it?.localTemperature }
অটোমেশন API
val automation = automation { sequential { val starterNode = starter<_>(thermostat, ThermostatDevice, Thermostat) // If the temperature is higher than 35C... condition { expression = starterNode.localTemperature greaterThan 35 } // ...and the automation hasn't been run for at least an hour... suppressFor(Duration.ofHours(1)) // ...broadcast a message action(speaker, SpeakerDevice) { command(AssistantBroadcast.broadcast("It's very hot outside.")) } } }
Temperature Measurement ব্যবহার করে পরিবেষ্টিত তাপমাত্রা পান
TemperatureMeasurement
বৈশিষ্ট্য ব্যবহার করে তাপস্থাপকের পরিবেষ্টিত তাপমাত্রা পেতে, measuredValue
বৈশিষ্ট্যটি পড়ুন।
ডিভাইস API
val temperatureTraitFlow: Flow<TemperatureMeasurement?> = thermostat .type(TemperatureSensorDevice) .map { it.standardTraits.temperatureMeasurement } .distinctUntilChanged() val localTemp: Short? = temperatureTraitFlow.first()?.measuredValue
অটোমেশন API
val automation = automation { sequential { val temperature = starter<_>(thermostat, ThermostatDevice, TemperatureMeasurement) val stateReaderNode = stateReader<_>(light, DimmableLightDevice, OnOff) condition() { val expr1 = temperature.measuredValue greaterThanOrEquals 35 val expr2 = stateReaderNode.onOff equals true expression = expr1 and expr2 } action(light, DimmableLightDevice) { command(OnOff.on()) } } }
Extended Thermostat ব্যবহার করে গড় তাপমাত্রা পান
একাধিক সেন্সর জুড়ে গড় তাপমাত্রা পেতে, ExtendedThermostat
বৈশিষ্ট্যের averageLocalTemperature
বৈশিষ্ট্যটি পড়ুন।
ডিভাইস API
// Get the average temperature val thermostat = home.devices().list().first { device -> device.has(TemperatureSensorDevice) } val temperatureTraitFlow: Flow<TemperatureMeasurement?> = thermostat .type(TemperatureSensorDevice) .map { it.standardTraits.temperatureMeasurement } .distinctUntilChanged() val localTemp: Short? = temperatureTraitFlow.first()?.measuredValue
অটোমেশন API
val automation = automation { sequential { val temperature = starter<_>(thermostat, ThermostatDevice, ExtendedThermostat) val stateReaderNode = stateReader<_>(light, DimmableLightDevice, OnOff) // if the average temperature is >= 35C condition() { val expr1 = temperature.averageLocalTemperature greaterThanOrEquals 35 val expr2 = stateReaderNode.onOff equals true expression = expr1 and expr2 } // Turn on the light action(light, DimmableLightDevice) { command(OnOff.on()) } } }
পরিবেষ্টিত আর্দ্রতা পান
RelativeHumidityMeasurement
পরিমাপ বৈশিষ্ট্য ব্যবহার করে থার্মোস্ট্যাটের পরিবেষ্টিত আর্দ্রতা পেতে, measuredValue
বৈশিষ্ট্যটি পড়ুন।
ডিভাইস API
// Get the ambient humidity val humidityTraitFlow: Flow<RelativeHumidityMeasurement?> = humiditySensingThermostat .type(HumiditySensorDevice) .map { it.standardTraits.relativeHumidityMeasurement } .distinctUntilChanged() val localHumidity: UShort? = humidityTraitFlow.first()?.measuredValue
অটোমেশন API
val automation = automation { sequential { val humidity = starter<_>(thermostat, HumiditySensorDevice, RelativeHumidityMeasurement) val stateReaderNode = stateReader<_>(light, DimmableLightDevice, OnOff) // if the ambient humidity is >= 80% condition() { val expr1 = (humidity.measuredValue greaterThanOrEquals 80u) val expr2 = (stateReaderNode.onOff equals true) expression = expr1 and expr2 } // Turn on the light action(light, DimmableLightDevice) { command(OnOff.on()) } } }
প্রদর্শিত তাপমাত্রা স্কেল নির্বাচন করুন
থার্মোস্ট্যাট ডিসপ্লেতে ব্যবহৃত পরিমাপের তাপমাত্রা ইউনিট পরিবর্তন করতে, ThermostatUserInterfaceConfigurationTrait
কনফিগারেশনট্রেটের temperatureDisplayMode
বৈশিষ্ট্যটি হয় TemperatureDisplayModeEnum.Celsius
বা TemperatureDisplayModeEnum.Fahrenheit
এ সেট করুন।
ডিভাইস API
// Set the displayed temperature scale to Fahrenheit val uiConfig = home .devices() .list() .filter { device -> device.has(ThermostatUserInterfaceConfiguration) } .first() val uiConfigTraitFlow: Flow<ThermostatUserInterfaceConfiguration?> = uiConfig .type(ThermostatDevice) .map { it.standardTraits.thermostatUserInterfaceConfiguration } .distinctUntilChanged() val uiConfigTrait: ThermostatUserInterfaceConfiguration = uiConfigTraitFlow.first()!! if ( uiConfigTrait.supports(ThermostatUserInterfaceConfiguration.Attribute.temperatureDisplayMode) ) { val unused = uiConfigTrait.update { setTemperatureDisplayMode(TemperatureDisplayModeEnum.Fahrenheit) } }
অটোমেশন API
val automation = automation { isActive = true sequential { val stateReaderNode = stateReader<_>(thermostat, ThermostatDevice, ThermostatUserInterfaceConfiguration) // When someone says "Show the temperature in Fahrenheit", val unused = starter<_>(structure, VoiceStarter.OkGoogleEvent) { parameter(VoiceStarter.OkGoogleEvent.query("Show the temperature in Fahrenheit")) } // if the temperature isn't being shown in Fahrenheit condition() { expression = stateReaderNode.temperatureDisplayMode notEquals TemperatureDisplayModeEnum.Fahrenheit } // display the current temperature using Fahrenheit action(thermostat, ThermostatDevice) { update(ThermostatUserInterfaceConfiguration) { setTemperatureDisplayMode(TemperatureDisplayModeEnum.Fahrenheit) } } } }
অপারেটিং মোড পরিবর্তন করুন
থার্মোস্ট্যাট নির্দিষ্ট অপারেটিং মোডের মধ্যে সীমাবদ্ধ হতে পারে, ThermostatTrait.SystemModeEnum
দ্বারা সংজ্ঞায়িত, ThermostatTrait.Attributes.systemMode
অ্যাট্রিবিউট সেট করে, যার মানগুলি ThermostatTrait.Attributes.SystemModeEnum
দ্বারা সংজ্ঞায়িত করা হয়।
ডিভাইস API
val thermostatDevice = structure.devices().list().first { device -> device.has(Thermostat) } val thermostatTraitFlow: Flow<Thermostat?> = thermostat.type(ThermostatDevice).map { it.standardTraits.thermostat }.distinctUntilChanged() val thermostatTrait: Thermostat = thermostatTraitFlow.first()!! // Set the system mode to Auto if (thermostatTrait.supports(Thermostat.Attribute.systemMode)) { val unused = thermostatTrait.update { setSystemMode(SystemModeEnum.Auto) } }
অটোমেশন API
val automation = automation { isActive = true // When the door lock state changes sequential { val doorLockEvent = starter<_>(doorLock, DoorLockDevice, LockOperationEvent) val stateReaderNode = stateReader<_>(thermostat, ThermostatDevice, SimplifiedThermostat) // if the door is unlocked and the thermostat is in Eco mode condition() { val expr1 = (doorLockEvent.lockOperationType equals LockOperationTypeEnum.Unlock) val expr2 = (stateReaderNode.systemMode equals SimplifiedThermostatSystemModeEnum.Eco) expression = expr1 and expr2 } // Set the thermostat to Auto mode action(thermostat, ThermostatDevice) { command(SimplifiedThermostat.setSystemMode(SimplifiedThermostatSystemModeEnum.Auto)) } } }
যখন থার্মোস্ট্যাট SystemModeEnum.Auto
এ সেট করা থাকে, তখন থার্মোস্ট্যাটটির চলমান মোড সম্পর্কে অতিরিক্ত তথ্য ThermostatTrait.Attributes.thermostatRunningMode
থেকে পড়া যেতে পারে যা ThermostatRunningModeEnum
এর মান দিয়ে তৈরি করা হয়।
ডিভাইস API
// Get the current thermostat running mode val runningModeTraitFlow: Flow<Thermostat?> = thermostat.type(ThermostatDevice).map { it.standardTraits.thermostat }.distinctUntilChanged() val runningMode: ThermostatTrait.ThermostatRunningModeEnum? = runningModeTraitFlow.first()?.thermostatRunningMode
অটোমেশন API
val automation = automation { isActive = true sequential { val stateReaderNode = stateReader<_>(thermostat, ThermostatDevice, Thermostat) // at 10:00am val unused = starter<_>(structure, Time.ScheduledTimeEvent) { parameter(Time.ScheduledTimeEvent.clockTime(LocalTime.of(10, 0, 0, 0))) } // if the thermostat is in Auto mode and is currently cooling condition() { val expr1 = (stateReaderNode.systemMode equals ThermostatTrait.SystemModeEnum.Auto) val expr2 = (stateReaderNode.thermostatRunningMode equals ThermostatTrait.ThermostatRunningModeEnum.Cool) expression = expr1 and expr2 } // announce that it's in Cool mode action(structure) { command(AssistantBroadcast.broadcast("The thermostat is currently running in Cool mode.")) } } }
SimplifiedThermostatTrait
থার্মোস্ট্যাটটি অটোমেশনে অপারেটিং মোড সেট করার প্রক্রিয়াটিকে স্ট্রিমলাইন করার জন্য ডিজাইন করা হয়েছে। SimplifiedThermostatTrait
ব্যবহার করে থার্মোস্ট্যাটের অপারেটিং মোড পরিবর্তন করতে, SetSystemModeCommand
ব্যবহার করুন, যার মান SimplifiedThermostatTrait.SystemModeEnum
দ্বারা সংজ্ঞায়িত করা হয়েছে।
এই বৈশিষ্ট্যটি শুধুমাত্র অটোমেশন API-এর সাথে ব্যবহারের জন্য উপলব্ধ।
অটোমেশন API
val automation = automation { isActive = true sequential { // When the presence state changes... val starterNode = starter<_>(structure, AreaPresenceState) // ...and if the area is unoccupied... condition() { expression = starterNode.presenceState equals PresenceState.PresenceStateVacant } // Set the thermostat to Eco mode action(thermostat, ThermostatDevice) { command(SimplifiedThermostat.setSystemMode(SimplifiedThermostatSystemModeEnum.Eco)) } } }
একটি থার্মোস্ট্যাট যে সিস্টেম মোডগুলিতে কাজ করতে পারে তা নির্ধারণ করতে, ThermostatTrait.Attributes.controlSequenceOfOperation
পড়ুন, যার মানগুলি ThermostatTrait.ControlSequenceOfOperationEnum
দ্বারা নির্ধারিত হয়।
ডিভাইস API
// Get the controlSequenceOfOperation val standardTraitFlow: Flow<Thermostat?> = thermostat.type(ThermostatDevice).map { it.standardTraits.thermostat }.distinctUntilChanged() val controlSequenceOfOperation: ThermostatTrait.ControlSequenceOfOperationEnum? = standardTraitFlow.first()?.controlSequenceOfOperation
অটোমেশন API
val automation = automation { isActive = true sequential { val stateReaderNode = stateReader<_>(thermostat, ThermostatDevice, Thermostat) // When someone says "Switch to cool mode", val unused = starter<_>(structure, VoiceStarter.OkGoogleEvent) { parameter(VoiceStarter.OkGoogleEvent.query("Switch to cool mode")) } // if the thermostat is capable of operating in Cool mode, condition() { val expr1 = stateReaderNode.controlSequenceOfOperation notEquals ControlSequenceOfOperationEnum.HeatingOnly val expr2 = stateReaderNode.controlSequenceOfOperation notEquals ControlSequenceOfOperationEnum.HeatingWithReheat expression = expr1 and expr2 } action(thermostat, ThermostatDevice) { // switch to Cool mode update(SimplifiedThermostat) { command(SimplifiedThermostat.setSystemMode(SimplifiedThermostatSystemModeEnum.Cool)) } } } }
প্রোগ্রামিং অপারেশন মোড পরিবর্তন করুন
থার্মোস্ট্যাটের প্রোগ্রামিং অপারেশন মোড Thermostat
thermostatProgrammingOperationMode
ব্যবহার করে পরিবর্তন করা যেতে পারে, যার মান ProgrammingOperationModeBitmap
দ্বারা সংজ্ঞায়িত করা হয়।
ডিভাইস API
val thermostatTraitFlow: Flow<Thermostat?> = thermostat.type(ThermostatDevice).map { it.standardTraits.thermostat }.distinctUntilChanged() val thermostatTrait: Thermostat = thermostatTraitFlow.first()!! if (thermostatTrait.supports(Thermostat.Attribute.thermostatProgrammingOperationMode)) { val programmingOperationMode = thermostatTrait.thermostatProgrammingOperationMode!! // Enable autoRecovery on the thermostatProgrammingOperationMode val unused = thermostatTrait.update { setThermostatProgrammingOperationMode( ThermostatTrait.ProgrammingOperationModeBitmap( programmingOperationMode.scheduleActive, true, programmingOperationMode.economy, ) ) } }
অটোমেশন API
// When someone says "Reset programming operation mode" val automation = automation { isActive = true sequential { val unused = starter<_>(structure, VoiceStarter.OkGoogleEvent) { parameter(VoiceStarter.OkGoogleEvent.query("Reset programming operation mode")) } // Set all the flags on the programming operation mode action(thermostat, ThermostatDevice) { update(Thermostat) { setThermostatProgrammingOperationMode(ProgrammingOperationModeBitmap(true, true, true)) } } } }
তাপমাত্রা সেটপয়েন্ট পরিবর্তন করুন
Thermostat
ব্যবহার করে তাপমাত্রা সেটপয়েন্ট পরিবর্তন করতে, ThermostatTrait.SetpointRaiseLowerCommand
কল করুন।
ডিভাইস API
val thermostatTraitFlow: Flow<Thermostat?> = thermostat.type(ThermostatDevice).map { it.standardTraits.thermostat }.distinctUntilChanged() val thermostatTrait: Thermostat = thermostatTraitFlow.first()!! // lower the temperature setpoint by 1 degree C thermostatTrait.setpointRaiseLower(amount = 1, mode = SetpointRaiseLowerModeEnum.Cool)
অটোমেশন API
val automation = automation { isActive = true sequential { val stateReaderNode = stateReader<_>(thermostat, ThermostatDevice, Thermostat) // At 10:00pm val unused = starter<_>(structure, Time.ScheduledTimeEvent) { parameter(Time.ScheduledTimeEvent.clockTime(LocalTime.of(22, 0, 0, 0))) } // if the setpoint is warmer than 19C condition() { expression = stateReaderNode.occupiedCoolingSetpoint greaterThan 19 } // lower the temperature setpoint by 5 degrees action(thermostat, ThermostatDevice) { command(Thermostat.setpointRaiseLower(SetpointRaiseLowerModeEnum.Cool, 5)) } } }
একটি তাপমাত্রা সেটপয়েন্ট অগ্রাধিকার
আপনি TemperatureSetpointHoldEnum.SetpointHoldOn
এ ThermostatTrait
এর temperatureSetpointHold
অ্যাট্রিবিউট সেট করে একটি প্রি-প্রোগ্রাম করা সময়সূচীর চেয়ে তাপমাত্রা সেটপয়েন্টকে প্রাধান্য দিতে পারেন, বা TemperatureSetpointHoldEnum.SetpointHoldOff
এ সেট করে সময়সূচীটিকে অগ্রাধিকার দিতে পারেন৷
ডিভাইস API
val thermostatTraitFlow: Flow<Thermostat?> = thermostat.type(ThermostatDevice).map { it.standardTraits.thermostat }.distinctUntilChanged() val thermostatTrait: Thermostat = thermostatTraitFlow.first()!! if (thermostatTrait.supports(Thermostat.Attribute.temperatureSetpointHold)) { // Set temperatureSetpointHold to SetpointHoldOn // allowing temperature setpoints to override any preprogrammed schedules. val unused = thermostatTrait.update { setTemperatureSetpointHold(TemperatureSetpointHoldEnum.SetpointHoldOn) }
অটোমেশন API
val automation = automation { isActive = true sequential { // When someone says "Prioritize thermostat setpoint" val unused = starter<_>(structure, VoiceStarter.OkGoogleEvent) { parameter(VoiceStarter.OkGoogleEvent.query("Prioritize thermostat setpoint")) } // make temperature setpoints override any preprogrammed schedules. action(thermostat, ThermostatDevice) { val unused2 = update(Thermostat) { setTemperatureSetpointHold(TemperatureSetpointHoldEnum.SetpointHoldOn) } } }
একটি সেটপয়েন্ট হোল্ড কত মিনিট সক্রিয় থাকে তা নিয়ন্ত্রণ করতে ThermostatTrait.Attributes.temperatureSetpointHoldDuration
সেট করুন।
ডিভাইস API
val thermostatTraitFlow: Flow<Thermostat?> = thermostat.type(ThermostatDevice).map { it.standardTraits.thermostat }.distinctUntilChanged() val thermostatTrait: Thermostat = thermostatTraitFlow.first()!! if (thermostatTrait.supports(Thermostat.Attribute.temperatureSetpointHoldDuration)) { // Set the setpoint hold duration to 60 minutes val unused = thermostatTrait.update { setTemperatureSetpointHoldDuration(60u) } }
অটোমেশন API
val automation = automation { isActive = true sequential { val stateReaderNode = stateReader<_>(thermostat, ThermostatDevice, Thermostat) val unused = starter<_>(thermostat, ThermostatDevice, Thermostat) // if the temperature setpoint hold duration is less than 60 minutes... condition() { expression = stateReaderNode.temperatureSetpointHoldDuration.lessThan(60u) } // ...and the automation hasn't been run for at least 24 hours... suppressFor(Duration.ofHours(24)) // ...set the temperature setpoint hold duration to 60 minutes action(thermostat, ThermostatDevice) { val unused2 = update(Thermostat) { setTemperatureSetpointHoldDuration(60u) } } } }
তাপমাত্রা সেটপয়েন্ট হোল্ড নীতি পরিবর্তন করতে, যা নির্ধারণ করে কিভাবে এবং কখন একটি থার্মোস্ট্যাট হোল্ড স্টেট শেষ হবে, ThermostatTrait.SetTemperatureSetpointHoldPolicyCommand
কল করুন।SetTemperatureSetpointHoldPolicyCommand.
বৈধ মান TemperatureSetpointHoldPolicyBitmap
দ্বারা নির্ধারিত হয়।
ডিভাইস API
val thermostatTraitFlow: Flow<Thermostat?> = thermostat.type(ThermostatDevice).map { it.standardTraits.thermostat }.distinctUntilChanged() val thermostatTrait: Thermostat = thermostatTraitFlow.first()!! if (thermostatTrait.supports(Thermostat.Attribute.temperatureSetpointHoldPolicy)) { // Set the temperature setpoint hold policy to holdDurationElapsedOrPresetChanged val unused = thermostatTrait.setTemperatureSetpointHoldPolicy( ThermostatTrait.TemperatureSetpointHoldPolicyBitmap( holdDurationElapsed = false, holdDurationElapsedOrPresetChanged = true, ) ) } val automation = automation { isActive = true sequential { // When someone says "Set my preferred hold duration", val unused = starter<_>(structure, VoiceStarter.OkGoogleEvent) { parameter(VoiceStarter.OkGoogleEvent.query("Set my preferred hold duration")) } // set the temperature setpoint hold policy to holdDurationElapsedOrPresetChanged action(thermostat, ThermostatDevice) { command( Thermostat.setTemperatureSetpointHoldPolicy( TemperatureSetpointHoldPolicyBitmap( holdDurationElapsed = false, holdDurationElapsedOrPresetChanged = true, ) ) ) } } }