Open JanLahmann opened 2 years ago
workaround implemented in #137
using
LED_INVERT = bool(config["LED_INVERT"]=="true" or config["LED_INVERT"]=="True")
instead of
LED_INVERT = bool(config["LED_INVERT"])
in file demos/bin/RasQ-LED-display.py (and other files).
There is an issue with reading Boolean variable in rasqberry_environment.env from python.
For example, in demos/bin/RasQ-LED-display.py, the variable "LED_INVERT" is not read correctly. The following log output:
results in
Only the last setting leads to the desired result.