You are reading a single comment by @Coder2012 and its replies. Click here to read the full conversation.
  • Gordon, thank you very much, as it turned out it was the GND and 3.3V pads that I ruined. I left the Bluetooth soldered and just wired these to pins on the strip.

    I have paired my laptop but I get undefined if I do:

    Serial1.on('data', function (data) {console.log(data);}); 
    Serial1.print("AT")
    

    If I plug the board in to USB and send the following code, and do save();

    var run = function(){
      digitalWrite(LED1,l=!l);
      console.log('run');
    };
    
    setInterval(run,1000);
    

    When I plug the board into a USB plug via the mains socket, I see a flashing LED and I get the string "run" sent via bluetooth to my WebIDE.

    What I don't understand is how can I send messages to the Espruino from either my PC or my phone?

About

Avatar for Coder2012 @Coder2012 started