You are reading a single comment by @ClearMemory041063 and its replies. Click here to read the full conversation.
  • Try this

    //PICO v1.86
    var baudrate=9600;
    var Port=Serial1;
    //var Port=Serial2;
    Port.setup(baudrate);
    
    //loopback jumper the tx and rx pins together to test
    Port.on('data', function (data) { print("Serial> "+data); });
    Port.print("Hello World");
    
About