You are reading a single comment by @urish and its replies. Click here to read the full conversation.
  • Since the advertisement was broken, I went ahead and patched navigator.requestDevice so I could still connect to the device over BLE-UART using the Espruino Web IDE:

    _originalRequestDevice = navigator.bluetooth.requestDevice;
    navigator.bluetooth.requestDevice = function(p) { 
      delete p.filters;
      p.acceptAllDevices = true; 
      return _originalRequestDevice.call(this, p);
    };
    

    However, once connected, the device sends a single line endlessly, and does not seem to respond to any input:

    <- Serial1
    <- Serial1
    <- Serial1
    ...
    

    Any ideas what this might be?

About

Avatar for urish @urish started