Duet CNC Pendant
-
I'm using this pendant to jog my CNC, but the connection is somewhat intermittent, when first starting the CNC.
I have noticed, however, that when the pendant connects to the controller (via an app on my Surface Pro) it reports a connection via Telnet port 23.
Would it be appropriate to enable this port in the config.g file, e.g:
; Configuration file M453 ; set machine to CNC mode G90 ; send absolute coordinates... M83 ; ...but relative extruder moves M550 P"Weeble" ; set printer name ; Network M552 P0.0.0.0 S1 ; enable network and acquire dynamic address via DHCP M586 P0 S1 ; enable HTTP M586 P1 S0 ; disable FTP M586 P2 S1 ; enable Telnet
...but I'm not sure how to specify the port number, or if I even need to.
I'm using a Duet3 MB6HC controller, with 3.4.3 firmware installed.
Thank you
-
@Nightowl see https://docs.duet3d.com/User_manual/Reference/Gcodes#m586-configure-network-protocols for how to configure the port number, in particular the R parameter.
-
Thank you, @dc42
I only remember TCP as being an antiseptic used for gargling, if you had a sore throat, or for small cuts!
Whoops
-
@Nightowl the default port number for Telnet is 23 anyway.
-
Thank you @dc42