-
• #2
Hi,
I guess this isn't really something you wanted to pay someone for? In which case it should really go on the Puck.js forum - I'll move it.
Based on http://www.espruino.com/Puck.js#accelerometer-gyro
require("puckjsv2-accel-steps").on(); var steps = 0; Puck.on('accel',function(a) { steps++; if (steps>20) LED2.set(); });
And maybe you want to reset it too when you press the button., so you can add:
setWatch(function() { steps = 0; LED2.reset(); }, BTN, {edge:"rising", repeat:true});
-
• #3
Thank you i appreciate it!!
-
• #4
Thank you
Hello, I want the puck.js to light up after a certain distance or steps , lets say 20 steps. So once this distance has been reached I want the puck to light up green