Duet wifi, not able to setup network true serial
-
On my Duet wifi, I'm not able to setup network. No serial COM is detected when I plug it in usb on diferent computer, diferent cable or usb port.
I try something but I don't undertand why my try is not working. I use this config.g:
M550 RickyBuilt3D ; Set machine name M552 S0 ;stop wifi G4 P10000 ;pause M587 S"SSID" P"PASSWORD" ; set network G4 P10000 ;pause M552 S1 ;start wifi M586 P0 S1 ; Enable HTTP ;Heaters M307 H0 B0 S1.00 ; Disable bang-bang mode for the bed heater and set PWM limit M305 P0 T100000 B3950 C0 R4700 ; Set thermistor + ADC parameters for heater 0 M143 H0 S120 ; Set temperature limit for heater 0 to 120C M140 S60 ;Bed temp 60
When I use it my bed start to heat at the end and show me that the file is loaded
-
@EdI_VeDeR said in Duet wifi, not able to setup network true serial:
Duet wifi, I'm not able to setup network true serial. No serial is detected on many computer, wire or port.
I'm guessing that English is not your native language as the two sentences above make no sense.
Perhaps post in your native language and see if someone can help.
Frederick
-
Better now?
-
@EdI_VeDeR said in Duet wifi, not able to setup network true serial:
I use this config.g:
which version of the firmware? a previous post seemed to inducate it will not work from config.g anymore, but admittedly its not 100% clear if config.g now prevent M587 from working in config.g.
alternatively use a trigger to set up the wifi ref https://duet3d.dozuki.com/Wiki/Gcode#Section_M581_Configure_external_trigger
or if the version you use support runonce.g try that?
-
I try another cable and everything is working now
Thank you!
-
@EdI_VeDeR said in Duet wifi, not able to setup network true serial:
M552 S0 ;stop wifi
G4 P10000 ;pause
M587 S"SSID" P"PASSWORD" ; set network
G4 P10000 ;pauseThese lines are unnecessary in config.g, because the WiFi module is disabled to start with, and does not get enabled until the end of running config.g. Also, M587 should NOT be in config.g; see note at end of https://duet3d.dozuki.com/Wiki/Gcode?revisionid=HEAD#Section_M587_Add_WiFi_host_network_to_remembered_list_or_list_remembered_networks
Important! Do not use M587 within config.g. As well as being a security hazard, writing the access point parameters to WiFi chip every time you start the Duet may eventually wear out the flash memory.
Ian