ioBroker/ioBroker.wolf

Fehlerhaft Math.round Funktion

Closed this issue · 5 comments

Kann im Code der main.js die Schrittweite die in der Bedienungsanleitung steht angepasst werden?
Hier wird die Math.round Funktion mit *2 ) /2 gemacht, für die Schrittweite von 0,5 wäre aber *10)/10 angebrachter.

Auszug Bedienungsanleitung ISM8:
IDs Datenpunkt Einheit Wertebereich Schrittweite
65 / 78 / 91 / 104 Sollwertkorrektur K -4K - +4K 0,5K
66 / 79 / 92 / 105 Sparfaktor K 0K - 10K 0,5K

Codeauszug:
} else if (type === 'DPT_Tempd' && name === 'Sollwertkorrektur') {
val = Math.round(data * 2) / 2;
if (val > 4) {
val = 4
}
if (val < -4) {
val = 4
}
return [enc.encodeDPT9(data), val];
} else if (type === 'DPT_Tempd' && name === 'Sparfaktor') {
val = Math.round(data * 2) / 2;
if (val > 10) {
val = 10
}
if (val < 0) {
val = 0
}
return [enc.encodeDPT9(data), val];

Danke und MfG Silvio

Hallo,

*2/2 passt, damit wird 0,5 als Schrittweite erreicht. Mit *10/10 würde man die Schrittweite 0,1 erreichen, welche aber nicht der Definition entspricht.

Grüße Matthias

Nochmal Hallo,

Habe durch eigenrecherche herausgefunden das dies richtig ist, also Sorry für das "angebrachter".

Aber mal zum eigentlichen Problem, Ich nutze die Sollwertkorrektur automatisiert um auf starke Temperaturstürze oder auch anstiege zu reagieren, jedoch funktionieren nur ganze Schritte um 1 bei Schritten um 0,5 kommt ein sehr großes Durcheinander zustande das z.B. der Heizkreis plötzlich auf -4 & der Mischerkreis seltsamerweise auf 0,4 steht was ja eigentlich nicht sein darf.

Grüße Silvio

stale commented

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs within the next 7 days. Please check if the issue is still relevant in the most current version of the adapter and tell us. Also check that all relevant details, logs and reproduction steps are included and update them if needed. Thank you for your contributions.
Dieses Problem wurde automatisch als veraltet markiert, da es in letzter Zeit keine Aktivitäten gab. Es wird geschlossen, wenn nicht innerhalb der nächsten 7 Tage weitere Aktivitäten stattfinden. Bitte überprüft, ob das Problem auch in der aktuellsten Version des Adapters noch relevant ist, und teilt uns dies mit. Überprüft auch, ob alle relevanten Details, Logs und Reproduktionsschritte enthalten sind bzw. aktualisiert diese. Vielen Dank für Eure Unterstützung.

stale commented

This issue has been automatically closed because of inactivity. Please open a new issue if still relevant and make sure to include all relevant details, logs and reproduction steps. Thank you for your contributions.
Dieses Problem wurde aufgrund von Inaktivität automatisch geschlossen. Bitte öffnet ein neues Issue, falls dies noch relevant ist und stellt sicher das alle relevanten Details, Logs und Reproduktionsschritte enthalten sind. Vielen Dank für Eure Unterstützung.