vitotai
vitotai
https://youtu.be/B2wUG_49lAk The rotary encoder is working now! I went to wrong directions because of not familiar or ignoring Harvard architecture of ESP32.
The WiFi scanning issue should have something to do with "WiFi Auto Reconnect", which will causes disconnection in AP mode. It might because that WiFi library uses all resource to...
Try the latest push, which includes an OneWire library. The discussion: https://github.com/espressif/arduino-esp32/issues/1335 I've tried back and forth, with and without this OneWire library. Sometimes it makes differences, sometimes it doesn't....
I've experienced compiling errors, unexpected exceptions, and etc. Upgrading to framework 1.9.0 seems to solve most of the problems. Now that all functions I've thought of are working, I am...
Frequency doesn't matter in this case. It's about memory, not computing power. It's easy to integrate Tilt. The problem is that I don't have a Title to test.
I2C supports multiple devices. If the addresses are different, two LCD can be on the same I2C bus. But, why not showing it at fifth line of OLED display? I've...
The reason I keep the original BrewPi screen untouched is that I want to keep the user-interface, which is controlled by the rotary encoder. It doesn't seem easy to comply...
I kind of like the idea of flicking alternative display. My initial thinking: - change display every few seconds when idle - if the rotary encoder is "turned", changed display...
The underlying libraries and hardware differ. Even on ESP8266, some versions of framework seem to recover network while some seems not. My ESP32 build is still not yet finished, while...
updated: I did some simple test. 1. Using sample code which hard coded my SSID/password, and my ESP32 could NOT connect. 2. Using the WiFiSetup I used in BPL to...