-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now passing zone setpoint ranges to HA on startup (#286)
- Loading branch information
1 parent
b8e21f1
commit f297a13
Showing
4 changed files
with
12 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,14 +26,14 @@ | |
* | ||
* @see net.sf.dz3r.device.model.Thermostat | ||
* | ||
* @author Copyright © <a href="mailto:[email protected]">Vadim Tkachenko</a> 2001-2021 | ||
* @author Copyright © <a href="mailto:[email protected]">Vadim Tkachenko</a> 2001-2023 | ||
*/ | ||
public class Thermostat implements ProcessController<Double, CallingStatus, Void>, Addressable<String> { | ||
|
||
private final Logger logger = LogManager.getLogger(); | ||
|
||
private final String name; | ||
private final Range<Double> setpointRange; | ||
public final Range<Double> setpointRange; | ||
|
||
/** | ||
* Thermostat setpoint. | ||
|
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