Conversation

What are any scripting/programming languages that are available for ICS/IoT devices? Kinda like Micropython where they run on the device to control attached devices.
5
3
It's very aimed at embedding and barely has a standard library. It's single-threaded and coroutines are a lot less useful out-of-the-box than they seem due to lack of a standard I/O system integrated with it. It's incredibly barebones without third party libraries / frameworks.
1
1
I think github.com/f-secure-found is quite compelling for that niche. It gives you the almost the entire Go standard library and runtime on bare metal. Green threads with abstracted non-blocking I/O are really nice to have when you don't have an OS providing threads, etc.
1