in reply to Re: Is Perl on the Raspberry Pi worth it?
in thread Is Perl on the Raspberry Pi worth it?

That's pretty awesome what you're doing here. I'd love to learn more about some specifics off-line sometime if you're up for it.

I've also written comms software which I use to communicate with microcontrollers (ESP, Arduino etc etc). Oftentimes, I need much more precise timing than the Pi micro-computer can handle, so I use a controller to perform certain tasks, then either poll or read from the microcontrollers for the data they've accumulated.

My community has 20 houses on the edge of a lake. Recently, I designed a system that replaced the manual work in the water purification "plant":

  • Comment on Re^2: Is Perl on the Raspberry Pi worth it?

Replies are listed 'Best First'.
Re^3: Is Perl on the Raspberry Pi worth it?
by haukex (Archbishop) on Jun 23, 2019 at 22:52 UTC

    That sounds pretty cool! And sure, feel free to ask about my systems - a lot of the stuff is already up in the hgpstools repo. For the CO2 logger on my list above, I've been considering combining an Arduino with an RPi, where the Arduino does the data logging and the RPi is only woken up to do the WiFi user interface, to conserve power while it's deployed in the field doing autonomous measurements, but I haven't fully decided on that set-up yet - but now that you mention it, the ESP8266 NodeMCU looks pretty interesting too!

    Do you use any solution to monitor multiple RPi's, i.e. whether they're still on-line and sending data regularly etc? That's an issue I'll probably have to tackle eventually, as the number of RPi's (and other measurement stations) I deploy grows.