You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been reading this good article. He's been testing some libraries across the web and make some good comparison points.
Let me quote some for this particular library:
Uses the RS485 library to communicate, but does not offer any way to pass a custom RS485 instance, so it is effectively hardcoded to a specific serial port.
Offers only single value reads and writes.
Slave stores value internally and reads/writes directly from those, without any callback or way to detect that communication has happened.
More on the page, and I hope this reference makes a good study for further improvement.
So, for my personal request, Any chance to implement to softwareSerial? So many other boards can use this library later.
Because I want the official library can cover it all.
Thanks in advance.
The text was updated successfully, but these errors were encountered:
What would be needed on this library is to allow passing a custom RS485 instance, rather than hardcoding to the predefined global RS485 instance.
Additionally, the RS485 library should also be modified to accept a Stream instead of a HardwareSerial instance, so you can also pass SoftwareSerial (or other streams) instead of just HardwareSerial.
I've been reading this good article. He's been testing some libraries across the web and make some good comparison points.
Let me quote some for this particular library:
More on the page, and I hope this reference makes a good study for further improvement.
So, for my personal request, Any chance to implement to softwareSerial? So many other boards can use this library later.
Because I want the official library can cover it all.
Thanks in advance.
The text was updated successfully, but these errors were encountered: