• Tags
  • Documentation
  • Order
  • Register
  • Login
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.
  • undefined
    Kevin
    last edited by 12 Dec 2020, 21:44

    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
    • undefined
      Phaedrux Moderator
      last edited by 12 Dec 2020, 22:57

      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
      • undefined
        dc42 administrators
        last edited by 13 Dec 2020, 08:03

        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
        • undefined
          jay_s_uk
          last edited by 13 Dec 2020, 08:08

          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
            last edited by 13 Dec 2020, 08:25

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

            undefined 1 Reply Last reply 13 Dec 2020, 08:44 Reply Quote 0
            • undefined
              jay_s_uk @A Former User
              last edited by 13 Dec 2020, 08:44

              @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
              • undefined
                Kevin
                last edited by 13 Dec 2020, 12:11

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

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