n-wach / camino

A library for controlling an Arduino from Python over Serial
MIT License
16 stars 3 forks source link

`set_input_flow_control` pyserial method is only available on POSIX systems. #4

Closed NotNotQuinn closed 1 year ago

NotNotQuinn commented 1 year ago

When using camino from windows, the Serial.set_input_flow_control method doesn't exist. This means windows users cannot use the package as is.

Although I dont think any of these are used, other platform-specific methods to watch out for are:

docs (archive.org)

n-wach commented 1 year ago

Thanks for the heads up! I just tested, and camino seems to work fine (on linux) after removing the Serial.set_input_flow_control call. I will remove the call and push an update.

n-wach commented 1 year ago

Just confirmed, version 1.2.0 of camino is now working on Windows. Thanks again!

NotNotQuinn commented 1 year ago

Thanks for the speedy update!