Gerd Wachsmuth

Results 13 issues of Gerd Wachsmuth

This fixes an annoying bug, which resets the selected step after undo/redo. I am not sure whether this is the nicest way for the implementation. Alternatively, one could add a...

This adds the suggestion of #168. The test cases detect if * a new parameter/calculation/visibility is added, and it also has to be added to the test suite (to make...

This provides almost 100% coverage of `__init__.py`. I am not sure about the missing lines. Sockets are weird, in particular checking whether a socket is closed / no longer usable....

Guzz-T noted in #132 that we have changed some names since 0.3.14, in particular, `Unknown_Calculation_239` has been changed to `VBO_Temp_Spread_Soll`. I suspect that this will also happens many times in...

Add English strings for the error codes. Adresses #27 (partially)

Out of curiosity, I tried to implement an asynchronous version of the socket connection to the heat pump, see https://github.com/gerw/python-luxtronik/tree/async. (Beware: this is not polished and, e.g., lacks some basic...

I would like to guess that calculation 259 is related to cooling: * 0 means cooling is not active * 1 means cooling is active Today, I turned on cooling...

parameter-visibilities-calculations

Currently, the profile editor does not run under JAVA 11. I have added some libraries related to JAXB as dependencies and now it works fine with newer versions of JAVA...

Sometimes `self._socket.recv` returns fewer bytes than requested (for me, this happens sometimes over VPN). The current `try-check` in `read_*` is not helpful, since it just skews up the readings, e.g.,...

I tried to solve some sparse systems with `ma57_solve`, but occasionally, it segfaults. If I execute a simple file with ```julia using HSL using SparseArrays using LinearAlgebra n = 500...