• I'd just posted a reply on your reddit post: https://www.reddit.com/r/espruino/commen­ts/8ye7sr/is_espruino_the_right_solution­_for_my_project/

    But as @allObjects says if you're happy with a Node.js server and using Bluetooth LE then it may be that Puck.js does exactly what you want without having to do any hardware work at all and while being really low-power. There's even a tutorial here showing you how to use Puck.js as a simple button with some Node.js code to get the state back.

    Otherwise if you want WiFi, since it's connected all the time (because you'd be pressing the button so often) I'd say Espruino WiFi plus a USB power bank would be really straightforward. POST is done just like in Node.js:

    function postMe() {
      content = "Hello";
      var options = {
        host: 'your_server',
        port: '80',
        path:'/theEndPoint',
        method:'POST',
        headers: {
          "Content-Type":"application/json",
          "Content-Length":content.length
        }
      };
      require("http").request(options, function(res)  {
        // ...
      }).end(content);
    }
    
About

Avatar for Gordon @Gordon started