Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    setup question wifi

    Scheduled Pinned Locked Moved
    Firmware installation
    5
    7
    358
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Kevinundefined
      Kevin
      last edited by

      hello I have a new router / modem since today,
      tp link m4 because of this I can no longer come online.
      I converted my network to 2.4gh for the duet bords.

      am working on yat but keep getting errors firmware_version: 2.05.1

      because I come after 1.19.2 I have to work with ''

      I have capital letters in it so it should be something like this this ?

      M587 S "a'b'c'd'6789" P "a'b'c'abc" (s: capital a the rest small p: capital abc)

      thank you

      1 Reply Last reply Reply Quote 0
      • Phaedruxundefined
        Phaedrux Moderator
        last edited by

        To get around the capital letter limitations you can create a macro to add the SSID name and then call the macro from the terminal to add it.

        ; Add default wifi network
        ;
        ;M291 R"Add default WIFI network? Y/N" P"This will add duetwifi access point." S3 T10
        
        M552 S0			; Disable network module
        G4 S5			; wait 5 seconds
        M587 S"NETWORKNAME" P"PASSWORD"			; Add duet wifi SSID to remembered networks list
        G4 S5			; wait 5 seconds
        M552 S1			; reenable wifi module
        
        ;M291 R"duetwifi SSID added." P"Check console to verify IP address."
        

        Save it as SSIDADD in the /sys folder and then send M98 P"SSIDADD" from the terminal to run it.

        Z-Bot CoreXY Build | Thingiverse Profile

        1 Reply Last reply Reply Quote 0
        • dc42undefined
          dc42 administrators
          last edited by

          Yat does not force characters to uppercase, therefore you can enter the password as it actually is. You only need to use the single quotes if you are sending the command from a program that converts the characters you enter to uppercase before it sends them.

          Duet WiFi hardware designer and firmware engineer
          Please do not ask me for Duet support via PM or email, use the forum
          http://www.escher3d.com, https://miscsolutions.wordpress.com

          1 Reply Last reply Reply Quote 0
          • jay_s_ukundefined
            jay_s_uk
            last edited by

            You can also use runonce.g to load the wifi details
            https://duet3d.dozuki.com/Wiki/Macros#Section_runonce_g
            Here is an example

            ; run-once.g
            ; called after config.g. When it has been executed, it is automatically deleted!
            ;
            ; generated by RepRapFirmware Configuration Tool v2.1.8 on Thu Jan 30 2020 01:40:41 GMT+0100 (heure normale d’Europe centrale)
            M552 S0                               ; disable network
            G4 P500                               ; wait half a second
            M552 S1                               ; enable network
            G4 P1000                              ; wait a second
            M587 S"WiFi_SSID" P"WiFi_Password" ; configure WiFi
            M552 S1                               ; enable network
            

            Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

            1 Reply Last reply Reply Quote 0
            • A Former User?
              A Former User
              last edited by

              Looks like OP is on 2.05.1 so runonce.g might not work?

              jay_s_ukundefined 1 Reply Last reply Reply Quote 0
              • jay_s_ukundefined
                jay_s_uk @A Former User
                last edited by

                @bearer oh yes. Missed that. Only works on 3.1.0 upwarda

                Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                1 Reply Last reply Reply Quote 0
                • Kevinundefined
                  Kevin
                  last edited by

                  thanks i got them online
                  anyway all without 'characters and with capital letters and small counters

                  1 Reply Last reply Reply Quote 0
                  • First post
                    Last post
                  Unless otherwise noted, all forum content is licensed under CC-BY-SA