I think there is a problem in the master branch. When I used the install script I got an error.
After an investigation I found the problem in the server.py in Line 290:
blinkThread = threading.Thread(target=displayRainbow, args=(10, 1, 0.1, 1))
When I changed this to
blinkThread = threading.Thread(target=displayRainbow, args=(1, 0.1, 1))
it works.
But I'm not sure if this is the right solution.
Hi Elio, great project!
I think there is a problem in the master branch. When I used the install script I got an error. After an investigation I found the problem in the server.py in Line 290:
blinkThread = threading.Thread(target=displayRainbow, args=(10, 1, 0.1, 1))
When I changed this toblinkThread = threading.Thread(target=displayRainbow, args=(1, 0.1, 1))
it works. But I'm not sure if this is the right solution.Best Regards from Germany
Oliver