-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
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
Support for ESP32 #25
Comments
Hi while (_wire->requestFrom((uint8_t)_address, (size_t)responseSize, (bool)true) != responseSize && retries--); to: while (_wire->requestFrom((uint8_t)_address, (uint8_t)responseSize, (bool)true) != responseSize && retries--); then you dont get the comment from your compiler regarding differences in the wire lib, |
Hi Still a lot of warnings:
|
That change suggested by @Bach-Danielsson works for me on an M5Stack IoT EduKit. Would be great to get it out in a release of the library. |
This was referenced Oct 14, 2021
Also see #36 for the same issue with this lib but with a Teensy instead of ESP32 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi
This will not compile on the ESP32 due to differences in the wire lib.
Please fix.
The text was updated successfully, but these errors were encountered: