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);
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
You can just move the bangle up and down at a regular rate...
Or, you can just do something like this in code: