Changed nexa to string to be more readable

This commit is contained in:
Ziver Koc 2016-05-10 21:09:12 +02:00
parent 1273bcae49
commit 1c62ef7c18
2 changed files with 7 additions and 9 deletions

View file

@ -156,11 +156,10 @@ public class NexaSelfLearning extends TellstickProtocol implements SwitchEventDa
public String toString(){
return "protocol:arctech;model:selflearning;" +
"house:"+house+
";group:"+group+
";unit:"+unit+
";method:"+enable;
return "house:"+house+
", group:"+group+
", unit:"+unit+
", method:"+enable;
}
@Override

View file

@ -74,10 +74,9 @@ public class Oregon0x1A2D extends TellstickProtocol implements PowerConsumptionS
}
public String toString(){
return "protocol:oregon;model:0x1A2D;" +
"address:"+address+
";temperature:"+temperature+
";humidity:"+humidity;
return "address:"+address+
", temperature:"+temperature+
", humidity:"+humidity;
}