microscope icon indicating copy to clipboard operation
microscope copied to clipboard

Lumencor Light Engine TCP support

Open dstoychev opened this issue 4 years ago • 2 comments

This one is a really low-hanging fruit, as pyserial already allows to use TCP. Besides a small change to how TCP commands are sent and received (no termination required), the main change is that instead of using the serial.Serial class directly, instances should be created with the serial.serial_for_url() function instead. This way, the user can specify any protocol and it will just work. For TCP, instead of COM port or device path, a URL needs to be used: socket://192.168.201.200:8095.

dstoychev avatar Feb 18 '21 18:02 dstoychev

The use case behind doing this the user is already using the ethernet interface to have the web interface.

carandraug avatar Apr 19 '21 18:04 carandraug

Implemented here: https://github.com/dstoychev/microscope/tree/lumencor-le.

dstoychev avatar Aug 14 '21 10:08 dstoychev