You are reading a single comment by @Manxome and its replies. Click here to read the full conversation.
  • Edit: Multiple edits, I apologize if anyone read this post while I kept fixing it!

    OK, first simple test...here is the code I used:

    setWatch(function(e) {  console.log(getTime());
      console.log(e.time - e.lastTime); }, BTN, { repeat:true, edge:'falling', debounce:10});
    

    I pressed/released the button, waited 60 seconds wall time, then pressed/released the button:

    18209.36011569047
    3.37781286905 // ignore this
    18220.76388179761
    11.38100977380
    

    So 60 seconds wall time was approximately 11.4 seconds "computer" time, about a 5 1/4 times slowdown.
    Any ideas?

    BTW: I appreciate your code, and I get it; it helps me to see examples right now to absorb them. I'm just not sure I need more than the setWatch() you helped me set up to know that something is up.

About

Avatar for Manxome @Manxome started