Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ADD Power wird Negativ ausgegeben #10

Closed
nischram opened this issue Apr 23, 2017 · 2 comments
Closed

ADD Power wird Negativ ausgegeben #10

nischram opened this issue Apr 23, 2017 · 2 comments

Comments

@nischram
Copy link
Owner

Eintrag mit der Fehlermeldung im Homematicforum:
https://homematic-forum.de/forum/viewtopic.php?f=19&t=30095&p=357877#p357877

"Ach was mir dabei gerade noch einfällt: in der E3DCGUI wird die Leistung des externe Wechselrichter mit einem negativen Zahlenwert angezeigt - das ist bei dem Wert der per Modbus ausgelesen wird auch so. In der "echten" Anzeige (sowohl am Gerät als auch im Web) wird der Wert aber "positiv" angezeigt - was ja auch richtig ist da es ja eine zusätzliche Stromquelle ist. Vielleicht magst du das in der E3DCGUI auch noch anpassen."

@nischram
Copy link
Owner Author

Eine mögliche Anpassung könnte in der RscpMain vorgenommen werden. Also ab Zeile 262 statt:
case TAG_EMS_POWER_ADD: { // response for TAG_EMS_REQ_POWER_ADD int32_t TAG_EMS_OUT_POWER_ADD = protocol->getValueAsInt32(response); cout << "Additional Power is " << TAG_EMS_OUT_POWER_ADD << " W\n";
könnte eine Investierung eingebaut werden:
case TAG_EMS_POWER_ADD: { // response for TAG_EMS_REQ_POWER_ADD int32_t ADD_REAL = protocol->getValueAsInt32(response); int32_t TAG_EMS_OUT_POWER_ADD = ADD_REAL * -1; cout << "Additional Power is " << TAG_EMS_OUT_POWER_ADD << " W\n";
Zuvor werde ich es testen lassen.

nischram pushed a commit that referenced this issue May 1, 2017
- ADD Power wurde Negativ angezeigt, Invertierung eingebaut
@nischram
Copy link
Owner Author

nischram commented May 1, 2017

Nach positiven Usertest Fehlerkorrektur in V1.28 hochgeladen.

@nischram nischram closed this as completed May 1, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant