beyonlo

Results 150 comments of beyonlo

@sandyscott I'm sorry, I was thinking that `invert` is just to configure `tx pin` change to be `rx` and `rx pin` change to be `tx`, in cases that user do...

> If you want to swap the RX & TX pins you can just reverse their order in the tuple you supply to the `pins` argument, but that will cause...

@brainelectronics Excellent! Thank you for the example :)

@GimmickNG could you please to port this example for the your `async` examples?

@GimmickNG Could you please to create/add an example for that? Maybe just add an entry to the [host_tests.py](https://github.com/GimmickNG/pycopy-modbus/blob/mpmodbus-compatibility/examples/common/host_tests.py)? So, I can test it for you :) Thank you in advance!

@ondrej1024 Hello! > So I was wondering if software direction control via IO pin has actually been tested and if it is reliable? I'm using this lib for `RS-485` using...

Hello @sabeehalam Could you please to add this code below before you run the `RTU Slave example` (before start to import `modbus` modules), and paste here the output? ```Python import...

@GimmickNG Thanks for reply. I have board with `RS485`, so as soon that `PR` will be merged I can to test it (`TCP` and `RTU`) to we know how much...

@sabeehalam The problem is that ModBus lib are allocating more memory than your microcontroller has free memory. Please, try do call the `gc.threshold(4000)` before all that code. ```Python import gc...

Have you checked this discussion https://github.com/orgs/micropython/discussions/11474? Since MicroPython version 1.20.0 the W5500 is supported by MicroPython (from Espressif ESP-IDF implementation). So I think that if you use that, everything else...