You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Is there an easy way to simulate the pedometer movement?

    You can just move the bangle up and down at a regular rate...

    Or, you can just do something like this in code:

    var n = 1;
    setInterval(function() {
      Bangle.emit("step", n++);
    }, 1000);
    
About

Avatar for Gordon @Gordon started