• I used a lora for sending datas constantly, and I recieved datas in espruion.

    I recieve data like this:

    lora.on('data', function (data) {
      console.log(data);
    });
    

    but I can't get the whole datas, just one character。
    I send 'abcccc',
    but console.log always print a,b,c,c,c,c one by one.
    How do I get the whole data?

About

Avatar for user109783 @user109783 started