주요 콘텐츠로 건너뛰기

E. Duet 2 WiFi Firmware

  1. E. Duet 2 WiFi Firmware, Connect via USB: 1 단계, 이미지 1/2 E. Duet 2 WiFi Firmware, Connect via USB: 1 단계, 이미지 2/2
    • Connect your Duet to your PC with the USB cable provided. Do not connect any additional devices or PSU

    • Windows: Download and extract the USB files from here

    • Open Device Manager by right-clicking on the Start icon and click on "Device Manager".

    • Look for any device with a yellow triangle or "generic USB". This indicates the Duet driver is not installed.

    • Right click on the device. Click Install Driver and browse to where you extracted the downloaded driver files. Click "Next" until the driver is installed.

  2. E. Duet 2 WiFi Firmware, Terminal Emulator: 2 단계, 이미지 1/1
    • To set up the network, we must use a terminal emulation program to talk to the Duet via the USB cable.

    • It's recommend downloading YAT. Other terminal emulation programs may work, eg PuTTY, but we've found YAT the most reliable.

    • This is because 3D printer host programs (such as Pronterface) and other terminal emulation programs may send all characters in uppercase, which causes problems when making changes to WiFi settings, as the SSID and password are case sensitive.

  3. E. Duet 2 WiFi Firmware, Connect to Duet: 3 단계, 이미지 1/3 E. Duet 2 WiFi Firmware, Connect to Duet: 3 단계, 이미지 2/3 E. Duet 2 WiFi Firmware, Connect to Duet: 3 단계, 이미지 3/3
    • Download and Install YAT using default options, then open it. If the Terminal Settings screen doesn't open automatically, select "Terminal" menu, then "Settings"

    • Select the COM port

    • If unsure of the COM port number, verify it with devmgmt.msc. Your Duet will be listed under Ports (COM & LPT) as USB Serial Device (COM#) or similar. Use COM# as the Serial Port in YAT

    • Set YAT to use <LF> as the end of line character. This will improve the readability of the messages coming from the Duet. Click "Text Settings" in the "Terminal Settings" and change "EOL sequence:" to <LF>. Click "OK" to close Text Settings. Click "OK" again to close Terminal Settings.

    • Select "Terminal" menu, then "Open/Start" to connect to your Duet. Or click the green tick in the tool bar. You may see lots of "WiFi reported error: no known networks found" messages. Don't worry, that's normal, and it means that the Duet is working!

  4. E. Duet 2 WiFi Firmware, Enable Network Module: 4 단계, 이미지 1/2 E. Duet 2 WiFi Firmware, Enable Network Module: 4 단계, 이미지 2/2
    • Your Duet WiFi will either have a blue LED on the WiFi module, or a green LED next to the WiFi module. This flashes once when power is connected, and is lit permanently when connected to a WiFi network. Duet 2 WiFi with external antenna has no WiFi LED. If you have a Duet with external antenna, don't forget to plug in the external antenna!

    • If you didn't turn off WiFi, you may find you are getting a lot of messages like "WiFi reported error: no known networks found". The default configuration turns on the WiFi, but it is not configured to connect to a network yet. To stop the WiFi, send M552 S-1

    • Send M552 to check the status. It should say "WiFi module is disabled". Now put it into idle mode by sending command M552 S0. Send M552 again to check it's in idle, then proceed.

  5. E. Duet 2 WiFi Firmware, Connect to Network: 5 단계, 이미지 1/2 E. Duet 2 WiFi Firmware, Connect to Network: 5 단계, 이미지 2/2
    • Use the command M587 as shown below. Substitute the SSID and WiFi password for those of your network. Enter the exact characters of your network SSID and password, in the correct case. The simple double quote characters (not curly quotes) are needed. Once you press enter, wait for the 'ok' response.

    • M587 S"your-network-ssid" P"your-network-password"

    • Any double quotation marks must be sent as straight double quotation marks. Curly double quotations will not work, and generate an error. Also, if you are not using YAT to communicate with the Duet and have upper and lower case letters or apostrophe characters in the SSID or password, see the note in the Gcode dictionary entry for M587.

    • Duet WiFi can only connect to a 2.4GHz network

    • Send M552 S1 to connect to WiFi. The Duet will confirm the connection and the IP address of the Duet controller(note the IP address for later). The blue LED on the WiFi module will flash as it connects, then should be on constantly once connected. If your router's SSID is hidden, or you want to connect to a specific SSID, send M552 S1 P"my_SSID"

    • If you get an error, check the network SSID and password you entered with the M587 command. Make sure that the WiFi is in idle mode before sending M587, with M552 S0. Send M587 to get a list of remembered networks, though this does not show the password.

    • Do not store M587 in config.g because it's persistent. You do not need to run this command every time the board is started. M552 S1 starts the network module and this command does need to be run every time the board starts.

    • At this point your Duet should be on the wifi network. The next step is to connect to the Duet Web Control (DWC)

  6. E. Duet 2 WiFi Firmware, Check Access to Duet Web Control: 6 단계, 이미지 1/1
    • Duet Web Control (also known as DWC) is the user interface used over a network connection in a browser to configure and control a Duet. The manual for the use of the DWC is here: Duet Web Control v2 and v3 (DWC) Manual

    • Open your browser and type the IP address assigned to the Duet in step 5

    • Now that we have connected to WiFi and DWC we can update the firmware

  7. E. Duet 2 WiFi Firmware, Checking your Firmware Version: 7 단계, 이미지 1/1
    • Check the firmware version by running M115 in the terminal window

    • If your Firmware_Version is 3.0.0 or higher skip to step 9

    • If your Firmware_Version is older than v3 we need to update it to RRF v3.0.0 because the binaries are too large to be installed by the IAP program for RRF v1 and v2.

    • Download "Duet2and3Firmware-3.0.zip" from their github. Do not extract the file.

    • Upload and install that file through Duet Web Control.

    • When the install is finished send M115 to verify your firmware version is now RRF v3

    • Now that your board has RRF v3.0.0 we can proceed with installing the latest version. You should be able to update the firmware by uploading "Duet2and3Firmware-3.x.zip" in DWC and install the firmware update.

    • The latest release from their github

    • After you are finished installing your firmware verify RRF, DWC and Duet WiFi Server are the latest versions.

    • Upload the Duet config files from my github

  8. E. Duet 2 WiFi Firmware, Ensure Future Connectivity: 9 단계, 이미지 1/1
    • Navigate to config.g by going to System tab > config.g

    • Check to make sure M552 S1 is near the beginning and doesn't have a ";" in the front. If there is a ";" that line will be ignored.

    • You can set the Duet to use a fixed IP address. Note that if you use a fixed address, care should be taken that it does not conflict with other devices on the network. Change the M552 P192.168.1.14 line to the IP address you want to use, eg M552 P192.168.0.15

    • Power cycle the board. The Duet should automatically connect to your WiFi and you should be able to access DWC

결승점

다른 6명이 해당 안내서를 완성하였습니다.

David Husolo

회원 가입일: 06/16/21

8,752 평판

안내서 33개 작성하였습니다

댓글 0개

댓글 쓰기

조회 통계:

24 시간 전: 2

7일 전: 28

30일 전: 84

전체 시간: 5,547