I have installed the GPX and the Flashforge plugin: when iam trying to connect i get following error:
Unexpected error while connecting to serial port FlashForge Creator Pro 2 3D Printer, port:1:5, baudrate 115200 from hook GPX: FileNotFoundError: '[Errno 2] No such file or directory: 'FlashForge Creator Pro 2 3D Printer, port:1:5'' @ comm.py:_open_serial:3836
lsusb
Bus 001 Device 004: ID 2b71:000e
so the printer should be connected and available.
thx for suggestions on this topic.
What did you already try to solve it?
gpx plugin only:
no interface found
flashforge plugin only:
Connected to: <octoprint_flashforge.flashforge.FlashForge object at 0x7225e950>, starting monitor
No answer from the printer within the connection timeout, trying another hello
There was a timeout while trying to connect to the printer
Changing monitoring state from "Connecting" to "Offline"
Connection closed, closing down monitor
Changing monitoring state from "Offline" to "Opening serial connection"
Changing monitoring state from "Opening serial connection" to "Connecting"
Connected to: <octoprint_flashforge.flashforge.FlashForge object at 0x6ebf56b0>, starting monitor
i have now installed version 1.6.1 (flashforge plugin only) and the connection works with this old version. thanks for support to get it running also with updated versions.
it seems that following lines from plugin doesn't have effect in version 1.8.x
self._conn_settings = {
'firmwareDetection': False, # do not try to auto detect firmware
'sdAlwaysAvailable': True, # FF printers always(?) have the internal SD card available
'neverSendChecksum': True, # FF protocol does not use command checksums
'helloCommand': "M601 S0", # FF hello command and set communication to USB
'abortHeatupOnCancel': False # prevent sending of M108 command which doesn't work
}
self._feature_settings = {
'autoUppercaseBlacklist': ['M146'] # LED control requires lowercase r,g,b
}
default_settings["serial"] = dict_merge(default_settings["serial"], self._conn_settings)