-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2e3ef0b
commit a36af3c
Showing
9 changed files
with
45 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace InnerCore.Api.DeConz.Models.Sensors.Zigbee | ||
{ | ||
public interface ZHAThermostat: IGeneralSensor | ||
{ | ||
|
||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
InnerCore.Api.DeConz/Models/Sensors/Zigbee/ZHAThermostatConfig.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace InnerCore.Api.DeConz.Models.Sensors.Zigbee | ||
{ | ||
public interface ZHAThermostatConfig : IGeneralSensorConfig | ||
{ | ||
/// <summary> | ||
/// Target temperature in 0.01 degrees Celsius. (3000 is 30.00 degree) | ||
int? HeatSetPoint { get; set; } | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
InnerCore.Api.DeConz/Models/Sensors/Zigbee/ZHAThermostatState.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
namespace InnerCore.Api.DeConz.Models.Sensors.Zigbee | ||
{ | ||
public interface ZHAThermostatState : IGeneralSensorState | ||
{ | ||
/// <summary> | ||
/// Current temperature in 0.01 degrees Celsius. (3000 is 30.00 degree) Bridge does not verify the range of the value. | ||
/// </summary> | ||
int? Temperature { get; set; } | ||
|
||
/// <summary> | ||
/// Heating on/off | ||
/// </summary> | ||
bool? On { get; set; } | ||
} | ||
} |