You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Ok, thanks - and if you add 3 lines at the end for drag:

    reset();
    Bangle.setLCDTimeout(0);
    Bangle.setLocked(0);
    g.clear();
    Bangle.on('touch',(n,e)=>{
      print("touch",e);
      g.fillRect(e.x-5,e.y-5, e.x+5,e.y+5);
    });
    Bangle.on('drag',(e)=>{
      print("drag",e);
    });
    

    You see drag events on the screen - but again, no touch?

    It's a really odd issue. While we could infer touches based on the drag info, right now taps come direct from the touchscreen so it's as if the screen stopped reporting them.

About

Avatar for Gordon @Gordon started