I've been looking for a way to replicate "touched", "pressed", "released" events from the official micropython for microbit, however I couldn't find a way to enable this "touch mode" on p1_04. I tried using p1_04 as an ADC, but that pin is not ADC-capable. Also attempted using it as an input GPIO assuming that when touching LOGO we would ground the signal, but that also didn't work.
Browsing through microbit's micropython support, they have this "Touch Mode" on p1_04, but even looking at nRF52833 documentation, I cannot find any mention of "touch" or "capacitive" for any pin. How is that working and how would one replicate it with this crate?
Hi,
I've been looking for a way to replicate "touched", "pressed", "released" events from the official micropython for microbit, however I couldn't find a way to enable this "touch mode" on
p1_04
. I tried usingp1_04
as an ADC, but that pin is not ADC-capable. Also attempted using it as an input GPIO assuming that when touching LOGO we would ground the signal, but that also didn't work.Browsing through microbit's micropython support, they have this "Touch Mode" on
p1_04
, but even looking at nRF52833 documentation, I cannot find any mention of "touch" or "capacitive" for any pin. How is that working and how would one replicate it with this crate?