lunknowl

Results 14 comments of lunknowl

"python test.py _" same result i still think that p.connect not connect or something, but the "G1 X10 F2400" working, same code everything is same just change "G1 X10 F2400"...

i dont see the ok for G1 command also. just a question, how can i specify the databit, stopbit, parity, and flow control?

> You have to edit this code > https://github.com/kliment/Printrun/blob/c451359a35d502a8e446702d3cf94cae9e50c0de/printrun/printcore.py#L253-L255 this is what i change ``` self.printer = Serial(port = self.port, baudrate = self.baud, timeout = None, parity = PARITY_NONE, stopbits=1,...

> If you provide port in the constructor it is automatically opened and after that in the code it is opened again - remove the port parameter. so i think...