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
User here noticed that OneWire is not working on ESP32-S2: https://forums.adafruit.com/viewtopic.php?f=19&t=187286
Two problems:
The text was updated successfully, but these errors were encountered:
There are various Onewire implementations for Espressif chips. This one uses delays, and is similar to what we do, including using the same ldeay mechanism: https://github.com/UncleRus/esp-idf-lib/blob/master/components/onewire/onewire.c
This one uses RMT. The README says the original implementation used bitbanging and delays, but it was too unreliable: https://github.com/DavidAntliff/esp32-owb
Another RMT implementation: https://github.com/mongoose-os-libs/onewire-rmt
RMT is a better idea.
Sorry, something went wrong.
We think we'll turn off OneWire on ESP for now and move to long-term.
Also see #3822 for a specific example.
dhalbert
No branches or pull requests
User here noticed that OneWire is not working on ESP32-S2: https://forums.adafruit.com/viewtopic.php?f=19&t=187286
Two problems:
The text was updated successfully, but these errors were encountered: