You are reading a single comment by @user151021 and its replies. Click here to read the full conversation.
  • Serial2.setup(9600, { tx: 16, rx: 17 });
    var at = require('AT').connect(Serial2);
    setInterval(() => {
      at.debug();
      at.write('AT/r/n');
    }, 3000);
    

    How do I get the response in string format.
    I'm getting debug output like this: "\u00C1\u00DD?\u00F2?\u00FF"

About

Avatar for user151021 @user151021 started