You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • As @Spocki says, there's that tutorial showing how to do it with SMS text messages.

    Realistically all you need to do is use the same wiring, but use the code from https://www.espruino.com/SIM900 and you have an internet connection that you can send data over.

    It could be as simple as running something like this:

    NRF.findDevices(function(devs) {
      var req = http.request({
        hostname: 'your_url',
        port: 80,
        method: 'POST'
      }, function(res) {
       // connected
      });
      req.on('error', function(e) { console.log('error: ',e); });
      req.write(JSON.stringify(devs));
     req.end();
    });
    
About

Avatar for Gordon @Gordon started