Improve javadoc for some addons (#15701)

Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
This commit is contained in:
Holger Friedrich
2023-10-08 00:25:04 +02:00
committed by GitHub
parent f8bcfb0c7e
commit f24a4305b8
275 changed files with 547 additions and 406 deletions

View File

@@ -73,7 +73,7 @@ public abstract class NhcThermostat {
* @param overrule the overrule temperature in 0.1°C multiples
* @param overruletime in minutes
* @param ecosave
* @param demand 0 if no demand, > 0 if heating, < 0 if cooling
* @param demand 0 if no demand, > 0 if heating, &lt; 0 if cooling
*/
public void updateState(int measured, int setpoint, int mode, int overrule, int overruletime, int ecosave,
int demand) {

View File

@@ -33,7 +33,7 @@ public interface NhcThermostatEvent {
* @param setpoint the setpoint temperature in 0.1°C multiples
* @param mode thermostat mode 0 = day, 1 = night, 2 = eco, 3 = off, 4 = cool, 5 = prog1, 6 = prog2, 7 = prog3
* @param overrule the overrule temperature in 0.1°C multiples
* @param demand 0 if no demand, > 0 if heating, < 0 if cooling
* @param demand 0 if no demand, > 0 if heating, &lt; 0 if cooling
*/
void thermostatEvent(int measured, int setpoint, int mode, int overrule, int demand);