We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
TM1638 library does not compile on ESP8266. While same library all example runs perfectly on Arduino Nano. pasz1972/HassMqqtAlarmPanelTM1638#7
The text was updated successfully, but these errors were encountered:
Ive resolved this ESP8266 compatibility issue by making changes in TM16XX.cpp file.
Change: line no 44 from
sendCommand(0x80 | (activateDisplay ? 8 : 0) | min(7, intensity));
to
sendCommand(0x80 | (activateDisplay ? 8 : 0) | min(byte(7), intensity));
and also line no 56 from :
sendCommand(0x80 | (active ? 8 : 0) | min(7, intensity));
sendCommand(0x80 | (active ? 8 : 0) | min(byte(7), intensity));
i've created a pull request for this. #49
Sorry, something went wrong.
Thank you!
Works nicely on ESP32 :) Thank You!
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
TM1638 library does not compile on ESP8266. While same library all example runs perfectly on Arduino Nano.
pasz1972/HassMqqtAlarmPanelTM1638#7
The text was updated successfully, but these errors were encountered: