CodeNameHawk

Results 8 comments of CodeNameHawk

Board don`t have 32.768 kHz oscillator. [docs](https://dl.espressif.com/dl/schematics/ESP32-Core-Board-V2_sch.pdf)

touchRead(T8) and touchRead(T9) return ~ 1650 untoched and ~ 100 when touch.

p.s. On board version 3.2.0 touchAttachInterrupt(T8, gotTouch8, threshold); work.

Additional information might be useful. In one sketch, I use T7, T8, and T9 with readTouch. In version 3.2.0, everything works fine. When switching to version 3.3.3, the first read...

I also noticed that after releasing the button, the value returned by touchRead increases slowly. The button manages to trigger a few more times — it's as if a capacitor...

`int threshold = 900; // if 0 is used, benchmark value is used. Its by default 1,5% change, can be changed by touchSetDefaultThreshold(float percentage) bool touch8detected = false; bool touch9detected...