You are reading a single comment by @allObjects and its replies. Click here to read the full conversation.
  • Blockly generated code has its own look... and unfortunately also it's limitation, but it is an interesting starting point.

    You can then grab the generated code and make enhancements. For example, setInterval(...) returns something which you can hold onto in a variable, the interval id: var intervalId = setInterval(...)This id you can then use in clearInterval(intervalId); function to stop the blinking...

    Once you switched over to textual code, there is no going back of the code to blockly... you then use Espruino/Reverence and the gazillion examples on the various Web pages: reference, modules, tutorials, and forum.

    Something that could throw you a bit of as a beginner are the object-oriented concepts, callbacks, and promises... but eventually, you will master all these things.

    Object-orientation is actually something very natural, but our recipe and step oriented process thinking comes a bit in its way. In the beginning and with trivial to simple applications that's not a problem at all. Procedural thinking never goes away, but it will be structured differently... When the number of moving parts and complexity increases, CRC - Class-Responsability-Collaborator - approach can help you to think trough your system / domain, and you will then just implement these things in a very handsome (object-oriented) way and you get very stable, robust, and maintainable / extensible software.

    The 'callback story' is typical to JavaScript in a browser: based on some action / user even - such a pressing a button, hovering over something, moving over something with the mouse triggers JavaScript function in your html document and bring it to life... Nice metaphor is: I give you my phone number and when you then want something (pertinent to me), you call me back...

    Nothing different with Espruino... for eample:

    The event of pressing and releasing a button you can watch and 'connect/register' a callback function with it that does something on the event... For example for every press and release you alternately switch the red or green LED on or off. Wether it is the red or green LED, you count the presses and if the number is even (count modulo 2 is 0), it's the red LED, otherwise, it is the green LED... have fun...

    // on button press lit alternately red and green LED
    var count = 0;
    setWatch(function() { // callback function
        if (digitalRead(BTN)) { // it's a press
          count++; // increment count
          if (count % 2 === 0) { // count is even - red
            LED1.set(); // red on
          } else {
            LED2.set(); // green on
          }
        } else { // it's a release
          if (count % 2 === 0) { // count is even - red
            LED1.reset(); // red off
          } else {
            LED2.reset(); // green off
          }
        }
      }
      , BTN // watch button / pin
      , { edge: "both" // press and release (signal goes from 0 to 1 or 1 to 0
        , repeat: true // keep watching (otherwise it catches only a single event
        , debounce: 20 // handle mechanical switch glitches / robust detection
        }
      ); 
    
About

Avatar for allObjects @allObjects started