You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Please can you open the Web IDE (banglejs.com/apps), connect and paste this code in to the left-hand side?

    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);
    });
    

    When you tap you should hopefully see some squares where you tap and some messages in the IDE? Please can you see if that works for you?

About

Avatar for Gordon @Gordon started