We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, i have recently updated my arduino 18.x esp8266 core, and found that they have stopped using "Byte".
All the libraries with having Byte variables used will give compilation errors.
Please replace Byte used in your library to Int , as i tested working.
Thanks for a good library.
The text was updated successfully, but these errors were encountered:
Hi, Byte is just a typedef over the type uint8_t. Thanks for pointing this out, I will correct this right away.
Byte
uint8_t
Sorry, something went wrong.
Replace type byte by uint8_t(related to #89)
4fb4a37
No branches or pull requests
Hi,
i have recently updated my arduino 18.x esp8266 core, and found that they have stopped using "Byte".
All the libraries with having Byte variables used will give compilation errors.
Please replace Byte used in your library to Int , as i tested working.
Thanks for a good library.
The text was updated successfully, but these errors were encountered: