You are reading a single comment by @JumJum and its replies. Click here to read the full conversation.
  • Hello Kolban,
    following your description, it is somewhere between alpha and beta.
    Thats not a problem for me, I would like help testing.
    For wifi functions I will wait for your "ready for testing".
    Some minutes ago, flashing of my ESP201 ran fine. So I could do some testing with I/O too. For that I will wait until some more information about testworthy functions is available.

    Up to now I got these simple javascript running in my first test:

    var i = 7;
    i++;
    console.log(i);
    for(i = 0; i < 5; i++){
      console.log(i);
    }
    function hello(t){
      console.log("hello " + t);
    }
    hello("Hugo");
    function hello2(n){
      var me = this;
      me.n = n;
      me.show = function(t){
        console.log(n + " " + t);
      };
    }
    hello2.prototype.showNumber = function(){console.log(this.n + 3);};
    var h = new hello2(42);
    h.show(" is the answer");
    h.showNumber();
    console.log(process.memory());
    
    var  si = setInterval(function(){
      hello(i++);
      if(i > 8) clearInterval(si);
    },1000);
    
    
About

Avatar for JumJum @JumJum started