“Great little screen, I'm planning on making a smart watch. The PiHut tutorials were really useful for getting started. I've been using a micropython driver build I found online instead of the basic RP2040 as it includes drivers for the screen... https://github.com/russhughes/gc9a01_mpy https://russhughes.github.io/gc9a01_mpy/index.html. The tutorials include a watch. If you want to use swipes and taps using the drivers provided in the waveshare tutorials then find def Int_Callback in the example code and copy self.Flag =1 and self.get_point() into the self.Mode == 0 section. Touch.Gestures will then return 5 for a single tap, 11 for a double tap and 12 for a long hold and you will be able to pull out the location of the taps as per the PiHut tutorial.”