Is there any MicroPython libraries available for Industrial Protocols? #9748
Replies: 3 comments 7 replies
-
RS232 is a physical interface definition, no protocol. You get it e.g. with a MAX232 attached to an UART. |
Beta Was this translation helpful? Give feedback.
-
I'd always suggest taking a look at the Awesome MicroPython list to see what is there. There are a number of entries there for serial-related libraries. Beyond that, you'd probably need to be much more specific about the protocols you're looking to implement in your code. |
Beta Was this translation helpful? Give feedback.
-
You can look here for existing Micropython-Packages: https://awesome-micropython.com/ modbus can use TCP, UDP or TTY/RS232. Things that would be hard to implement:
You can also just use TCP/IP to exchange data. Using the low-level networking stuff, requires understanding the data-types used in PLC and the byte-order. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi there,
I am planning to program ESP32 with MicroPython and looking for some MicroPython libraries that support Industrial protocols like EthernetIP, RS232 etc. I found some of the libraries like Pycomm and Pyserial. Now I need to know whether those same libraries can be used in MicroPython itself. Or Is there any other minimized version of the same? .
Beta Was this translation helpful? Give feedback.
All reactions