-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConstants.cs
39 lines (33 loc) · 992 Bytes
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
namespace Fritz.HomeAutomation
{
/// <summary>
/// Constants
/// </summary>
public static class Constants
{
/// <summary>
/// value for thermostat on
/// </summary>
public const int TemperatureOn = 254;
/// <summary>
/// value for thermostat off
/// </summary>
public const int TemperatureOff = 253;
/// <summary>
/// min temperature supported by the api
/// </summary>
public const int MinTemperature = 8;
/// <summary>
/// max temperature supported by the api
/// </summary>
public const int MaxTemperature = 28;
/// <summary>
/// max duration for boost or window open
/// </summary>
public const int MaxDurationInMinutes = 1440; //24h
/// <summary>
/// min duration for boost or windwo open
/// </summary>
public const int MinDurationInMinutes = 1; //1 minute
}
}