It's possible that with the move to `uBit.io.logo` the default NRF52Pin touch mode is resistive and it might need to be set up to capacitive on startup. With the latest commit in main, running this code and touching the logo is only registered if I am touching the GND pin as well: ```python from microbit import * while True: print(pin_logo.is_touched()) sleep(200) ```