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

Duet pi GUI

Scheduled Pinned Locked Moved
General Discussion
3
12
556
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
    BearcatTD
    last edited by 18 Mar 2020, 21:24

    So I installed the latest Duet Pi with the GUI. I updated the WPA-supplicant file with all of my wifi options. DuetPi starts up and connects to the internet fine. But I cannot tell which SSID that the pi is actually connected to. I ran hostname -i and it came back with 127.0.0.1. The problem is none of my APs produce ip addresses in that range. I have internet access, but I need to know where I am connected and what is the right ip address. I need to know this so I can ssh into the pi.

    The selection of apps available is pretty slim...I get it, don't want the machine bogged down. I tried to do an apt-get upgrade / update...no joy.

    Any help would be appreciated.

    Professor of Theatre, Lighting and Scenic Designer, Northwest Missouri State University

    Hardware: Ender 3 with a Duet 2 wifi, CR-10 V2 with a Duet3

    undefined 1 Reply Last reply 19 Mar 2020, 01:10 Reply Quote 0
    • ?
      A Former User
      last edited by A Former User 18 Mar 2020, 21:28

      ifconfig (or sudo ifconfig) will give you a more detailed list of network addresses.

      i suspect iwconfig will do the same for the wifi name

      (no idea where those things are in the gui unfortunately)

      edit: 127.0.0.1 is a special addres for loopback testing, refered to localhost. it doesn't go anywhere; weird hostname -i outputs it if it has other addresses.

      1 Reply Last reply Reply Quote 1
      • undefined
        BearcatTD
        last edited by 18 Mar 2020, 21:34

        Thanks! I do the ipconfig, then arp -a, which gives a list of all ip addresses connected to each AP. Nothing new shows up.

        Professor of Theatre, Lighting and Scenic Designer, Northwest Missouri State University

        Hardware: Ender 3 with a Duet 2 wifi, CR-10 V2 with a Duet3

        ? 1 Reply Last reply 18 Mar 2020, 21:50 Reply Quote 0
        • ?
          A Former User @BearcatTD
          last edited by A Former User 18 Mar 2020, 21:50

          @BearcatTD said in Duet pi GUI:

          then arp -a, which gives a list of all ip addresses connected to each AP

          that had me raise an eyebrow; for several reasons

          • arp is only a mac to ip address mapping, and only populated and cached for 2-5 minutes for addresses the host has connected to
          • it will not include the hosts own address under any circumstances i think where did you run arp -a?

          edit: I'm thinking your pi is probably not connected to the internet or any network for that matter; but puzzled what would make you think it is. erase and rewind a little - how do you interface to the pi currently?

          1 Reply Last reply Reply Quote 0
          • undefined
            BearcatTD
            last edited by 18 Mar 2020, 21:52

            arp -a runs on mac after ifconfig and on Windows after ipconfig

            Professor of Theatre, Lighting and Scenic Designer, Northwest Missouri State University

            Hardware: Ender 3 with a Duet 2 wifi, CR-10 V2 with a Duet3

            1 Reply Last reply Reply Quote 0
            • ?
              A Former User
              last edited by A Former User 18 Mar 2020, 21:54

              ah, i assumed you'd run this on the Pi, as that is where it would have made sense to run hostname -i neither command would have done you any good outside of the Pi.

              also note ifconfig , not ipconfig for the Pi.

              This is what I thought you'd be after, and wanted you to try:

              pi@duet3:~ $ iwconfig
              eth0      no wireless extensions.
              
              lo        no wireless extensions.
              
              wlan0     IEEE 802.11  ESSID:"bearlink"
                        Mode:Managed  Frequency:2.447 GHz  Access Point: D4:5F:25:EC:B4:54
                        Bit Rate=72.2 Mb/s   Tx-Power=31 dBm
                        Retry short limit:7   RTS thr:off   Fragment thr:off
                        Power Management:on
                        Link Quality=54/70  Signal level=-56 dBm
                        Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
                        Tx excessive retries:0  Invalid misc:0   Missed beacon:0
              
              pi@duet3:~ $ ifconfig
              eth0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
                      ether b8:27:eb:08:5c:88  txqueuelen 1000  (Ethernet)
                      RX packets 0  bytes 0 (0.0 B)
                      RX errors 0  dropped 0  overruns 0  frame 0
                      TX packets 0  bytes 0 (0.0 B)
                      TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
              
              lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
                      inet 127.0.0.1  netmask 255.0.0.0
                      inet6 ::1  prefixlen 128  scopeid 0x10<host>
                      loop  txqueuelen 1000  (Local Loopback)
                      RX packets 0  bytes 0 (0.0 B)
                      RX errors 0  dropped 0  overruns 0  frame 0
                      TX packets 0  bytes 0 (0.0 B)
                      TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
              
              wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
                      inet 10.10.0.237  netmask 255.255.255.0  broadcast 10.10.0.254
                      inet6 fe80::451b:b7f0:f1ab:e16d  prefixlen 64  scopeid 0x20<link>
                      ether b8:27:eb:5d:09:dd  txqueuelen 1000  (Ethernet)
                      RX packets 194  bytes 18456 (18.0 KiB)
                      RX errors 0  dropped 0  overruns 0  frame 0
                      TX packets 80  bytes 15217 (14.8 KiB)
                      TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
              
              
              1 Reply Last reply Reply Quote 0
              • undefined
                BearcatTD
                last edited by 18 Mar 2020, 22:56

                YES! I did this about 5 seconds before your post came through...LOL Thanks!

                Professor of Theatre, Lighting and Scenic Designer, Northwest Missouri State University

                Hardware: Ender 3 with a Duet 2 wifi, CR-10 V2 with a Duet3

                1 Reply Last reply Reply Quote 0
                • ?
                  A Former User
                  last edited by 18 Mar 2020, 22:58

                  Did you resolve the issue?

                  undefined 1 Reply Last reply 18 Mar 2020, 23:08 Reply Quote 0
                  • undefined
                    BearcatTD @A Former User
                    last edited by 18 Mar 2020, 23:08

                    @bearer It did! Now I just need to figure out where and how everything plugs in!

                    Professor of Theatre, Lighting and Scenic Designer, Northwest Missouri State University

                    Hardware: Ender 3 with a Duet 2 wifi, CR-10 V2 with a Duet3

                    1 Reply Last reply Reply Quote 0
                    • undefined
                      tekstyle @BearcatTD
                      last edited by 19 Mar 2020, 01:10

                      @BearcatTD
                      Can you tell me how you installed duetpi? I've been trying for 2 days. I downloaded duetpi.zip, used balena etcher. Put it into the raspberry pi model 3. And all I get is a black screen with some codes but it stops there.

                      ? undefined 2 Replies Last reply 19 Mar 2020, 01:20 Reply Quote 0
                      • ?
                        A Former User @tekstyle
                        last edited by 19 Mar 2020, 01:20

                        @tekstyle said in Duet pi GUI:

                        Put it into the raspberry pi model 3. And all I get is a black screen with some codes but it stops there.

                        You should probably create a new topic and include "some codes" to get help with your problem.

                        1 Reply Last reply Reply Quote 0
                        • undefined
                          BearcatTD @tekstyle
                          last edited by 19 Mar 2020, 13:23

                          @tekstyle I downloaded the duetpi file with the full GUI. I connected the pi to the duet 3 with the ribbon cable. Did you edit the wpa_supplicant.conf? So you can connect to wifi. If you haven't done this yet, make sure you use a good text editing app (I swear by Atom), as Windows and Mac stock apps sometimes put weird line breaks and other funkyness in the files.

                          Professor of Theatre, Lighting and Scenic Designer, Northwest Missouri State University

                          Hardware: Ender 3 with a Duet 2 wifi, CR-10 V2 with a Duet3

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