PanelDue 5i not working
-
@Ex3DP The RRF configuration tool does not configure WiFi access. You need to do that manually, usually by connecting to the Duet via USB using a PC with a serial terminal (like YAT). It is also possible to set up the WiFi using the PanelDue, as it is now working. You will need the name of the WiFi SSID you want to connect to, and the password. The commands you need to send are:
M587
; sent on it's own it lists the remembered WiFi networks
M552
; reports the IP address and WiFi SSID to which it is connected
M552 S-1
; turns off WiFi module
M552 S0
; turns on WiFi module in idle mode (does not try to connect)
M587 S"*"
; delete all remembered WiFi networks (if necessary)
M587 S"your-network-ssid" P"your-network-password"
; Store SSID name and password. See note about special characters here: https://docs.duet3d.com/en/User_manual/Reference/Gcodes/M587
M552 S1
; turn on WiFi module and connect
M552
; reports the IP address and WiFi SSID to which it is connectedCheck that you have an
M552 S1
command in config.g, so that WiFi is enabled at power on.Ian
-
@droftarts Yes Sir. We did that manually only, but there was no success for RRF 3.4.5 firmware version.
-
@Ex3DP please post the responses from these commands, so we can understand where it is going wrong. Without more information, we can’t diagnose what the issue might be. Also post the response to M122.
Ian
-
This post is deleted! -
@droftarts ok sir.. Definitely will soon post the responses.. Thank you so much for the help.