• Hello,

    I've bought a HC-05 Für Arduino hp and the connection to my Blueterm-App (Android) and also to my Debian-Linux-PC (over Blueman or commandline) were successfull.

    So I wanted to try out the tutorial http://www.espruino.com/Project+7. Instead of soldering the Bluetooth-module to the Espruino-Board, I wanted to plug it in with some jumper wires, as other connections are possible according to http://www.espruino.com/Wiring+Up.

    My connection is:

    HC-05 : Espruino
    GND : GND
    3.3 : 3.3
    TXD : B7
    RXD : B6
    

    My problem is, I can't receive any data over the connection.

    I tried out the following script, I found in the forum:

    function onInit() { Serial1.setup(9600);}
    Serial1.onData(function (e) {  print("--->"+e.data); });
    setInterval(function() {
      Serial1.println("Hello");
    }, 1000);
    

    I would be glad, if somebody could help me!

    Stefan

About

Avatar for Stefan @Stefan started