this post was submitted on 05 May 2024
15 points (100.0% liked)

Open Source

28975 readers
721 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 4 years ago
MODERATORS
 

Anyone know of any scriptable asynchronous communication tools?

The closest so-far appears to be Kermit. It's been around since CP/M, but apparently there's still no centralised language reference and the syntax predates Perl.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 2 months ago* (last edited 2 months ago) (2 children)

No, it needs to be serial communication. My use case is talking to a CNC.

Edit: fat fingers: "ea" -> "to a"

[–] [email protected] 4 points 2 months ago (1 children)

lol got it. Definitely not email then

[–] [email protected] 1 points 2 months ago

That would be fun tho

[–] [email protected] 1 points 2 months ago* (last edited 2 months ago) (1 children)

I used expect a lifetime ago to reliably talk to a bunch of very strange ISDN modems.

https://www.tcl.tk/man/expect5.31/expect.1.html

I think something like expect also exists for more modern languages, but tcl is still easy enough to learn (just a little unusual, everything is a string)

[–] [email protected] 1 points 2 months ago

That's several recommendations for expect. I'll start digging. Thank you.