lunknowl
lunknowl
i think the skr1.3 is not connect `from printrun.printcore import printcore from printrun import gcoder import sys import time #----------------- p = printcore() p.connect('COM19', 250000) while not p.online: time.sleep(0.1) #-----------------...
pronterface printrun version 1.6.0, - python printrun version 2.0.0rc7 - the debug information `SENT: M105 RECV: ok T:-15.00 /0.00 B:-15.00 /0.00 @:0 B@:0`
this is the whole log on skr1.3 board with pronterface printrun v2.0.0rc7 `Connecting... SENT: M105 RECV: ok T:-15.00 /0.00 B:-15.00 /0.00 @:0 B@:0 Printer is now online. SENT: M105 RECV:...
well the problem is i can able to connect using pronterface but when using pythons script `from printrun.printcore import printcore from printrun import gcoder import sys import time #----------------- p...
> It is expected to get some "Not connected to printer" messages, because we are sending them while we wait the connection. > You can swap the send_now('M105') and sleep,...
> You should use the same baud rate as pronterface, Your last baud rate is 115200, so it is no surprise that it does not work. i using baudrate 115200...
> Move the callback subscription before connect so you see if the printer sends some message > > ``` > def recv_callback(line): > print("got", line) > p.recvcb = recv_callback >...
> What is your marlin version? > add: > > ``` > p.loud = True > p.connect(...) > ``` > > and paste the log. > > Another workaround that...
> Paste log when you add > > ``` > p.connect(...) > p.loud = True > ``` like i say, blank log, waiting for something, usually "ERROR:root:Not connected to printer"
> > like i say, blank log, waiting for something, usually "ERROR:root:Not connected to printer" > > After `p.online = True` you should not see "Not connected to printer" no...