I’m sorry if this isn’t the place to ask this, I also asked over at [email protected].

So what I want to do is this: Two RasPis are at different locations. They’re on different networks but have internet access. Pressing a button on one of the Pis turns on an LED over at the other Pi via GPIO. How can I make the communication work? My first thought was Telegram bots as I’m familiar with those for notifications but you can’t have Telegram bots communicate with each other, sadly. Is there a good (and secure) solution to this? Preferably using Python code and without continuous costs like server hosting, etc?

Thanks!

  • Daniel Quinn
    link
    fedilink
    English
    arrow-up
    2
    ·
    4 months ago

    The easiest & cheapest option would be to expose one of the devices to the internet on a known port and connect from the other device to that one with SSH.

    Once you’ve got a connection, you can do pretty much anything you want, including writing to a pipe or even a file and polling it.

    If you don’t want to expose either, then you need a third party to facilitate the connection that is on the Open internet, though that server can be yours too. Even a €4/mo box at Hetzner would do it.

    If these options sound good, let me know and I can be more detailed.