• A while ago, I received my Bangle.js 2 and it was working great, but now, It seems whenever I am touching the screen a lot (like playing some sort of game) it fires touch events when I am not touching it, but then stops firing the events after a little while. Here is a log of the unexpected touch events it made with this code:

    Bangle.on('touch', (button, xy) => {
      console.log("coords are", xy);
    });
    
    coords are { "x": 19, "y": 15, "type": 0 }
    coords are { "x": 24, "y": 17, "type": 0 }
    coords are { "x": 18, "y": 15, "type": 0 }
    coords are { "x": 24, "y": 18, "type": 0 }
    coords are { "x": 22, "y": 19, "type": 0 }
    coords are { "x": 31, "y": 20, "type": 0 }
    coords are { "x": 13, "y": 11, "type": 0 }
    coords are { "x": 1, "y": 7, "type": 0 }
    coords are { "x": 1, "y": 0, "type": 0 }
    coords are { "x": 1, "y": 2, "type": 0 }
    coords are { "x": 1, "y": 0, "type": 0 }
    coords are { "x": 1, "y": 0, "type": 0 }
    coords are { "x": 1, "y": 9, "type": 0 }
    coords are { "x": 1, "y": 5, "type": 0 }
    coords are { "x": 1, "y": 1, "type": 0 }
    coords are { "x": 9, "y": 5, "type": 0 }
    coords are { "x": 1, "y": 23, "type": 0 }
    coords are { "x": 6, "y": 1, "type": 2 }
    

    I am running 2v12 firmware and I have tried the Factory Reset option in the settings menu, but that did fix the problem.
    Is there any way to fix this?

About

Avatar for Ronin @Ronin started