From 07167f4865d310e00031868324539e9eca2995eb Mon Sep 17 00:00:00 2001 From: Ryan Wagoner Date: Fri, 19 Oct 2018 00:11:28 -0400 Subject: [PATCH] - Add min and max climate temperatures --- OmniLinkBridge/MQTT/Climate.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OmniLinkBridge/MQTT/Climate.cs b/OmniLinkBridge/MQTT/Climate.cs index 0816864..5e4a9f6 100644 --- a/OmniLinkBridge/MQTT/Climate.cs +++ b/OmniLinkBridge/MQTT/Climate.cs @@ -16,6 +16,9 @@ namespace OmniLinkBridge.MQTT public string temperature_high_state_topic { get; set; } public string temperature_high_command_topic { get; set; } + public string min_temp { get; set; } = "45"; + public string max_temp { get; set; } = "95"; + public string mode_state_topic { get; set; } public string mode_command_topic { get; set; } public List modes { get; set; } = new List(new string[] { "auto", "off", "cool", "heat" });