You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  •         //uart.write(`\x03\x10transfer('${_cmd}'­)\n`);
            uart.write("\x03\x10transfer('"+_cmd+"')­\n");
    

    Both of those are adding extra quotes, just in different ways?

    What about:

            uart.write(`\x03\x10transfer(${_cmd})\n`­);
    
About

Avatar for Gordon @Gordon started