MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. Tak
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    T
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: MMM-NetworkScanner

      @jerryp said in MMM-NetworkScanner:

      @tak

      cd ~/
      sudo apt-get install arp-scan  
      

      It’s installed (1st step of the README) …
      All it’s OK but impossible to display the result in columns. It’s always like a list.
      (And sometimes, some peripherals are not OK … per ex. my computer)

      posted in Utilities
      T
      Tak
    • RE: MMM-NetworkScanner

      Hi Guys !

      I’ve added MMM-NetworkScanner to my MM and I’m not able to see the result as columns.

      My code in the config.js :

      {
              module: "MMM-NetworkScanner",
              position: "top_center",
              header: "E-Tak Network",
              config: {
                  devices: [
                      { 
                          ipAddress: "192.168.0.1", 
                          name: "V00", 
                          icon: "wifi", 
                          colorStateOnline: "green", 
                          colorStateOffline: "#f00",
                      },
      				{ 
                          ipAddress: "192.168.0.2", 
                          name: "FoxRPZ", 
                          icon: "wifi", 
                          colorStateOnline: "green", 
                          colorStateOffline: "#f00",
                      },
                      { 
                          ipAddress: "192.168.0.22", 
                          name: "Greg PC", 
                          icon: "desktop", 
                          colorStateOnline: "green", 
                          colorStateOffline: "#f00",
                       },
                      { 
                          ipAddress: "192.168.0.29", 
                          name: "RPIWEB", 
                          icon: "database", 
                          colorStateOnline: "green", 
                          colorStateOffline: "#f00",
                      },
                      { 
                          ipAddress: "192.168.0.30", 
                          name: "RPIDNS", 
                          icon: "database", 
                          colorStateOnline: "green", 
                          colorStateOffline: "#f00",
                      },
                      { 
                          ipAddress: "192.168.0.13", 
                          name: "Greg", 
                          icon: "mobile", 
                          colorStateOnline: "green", 
                          colorStateOffline: "#f00",
                       },
      				 { 
                          ipAddress: "192.168.0.11", 
                          name: "Elo", 
                          icon: "mobile", 
                          colorStateOnline: "green", 
                          colorStateOffline: "#f00",
                       },
      				 { 
                          ipAddress: "192.168.0.16", 
                          name: "PS4", 
                          icon: "gamepad", 
                          colorStateOnline: "green", 
                          colorStateOffline: "#f00",
                       },
      				 { 
                          ipAddress: "192.168.0.40", 
                          name: "Mibox", 
                          icon: "tv", 
                          colorStateOnline: "green", 
                          colorStateOffline: "#f00",
                       },
                  ],
                  sort: true,
                  showUnknown: false,
      			showOffline: true,
                  showDeviceColums: true,
      			residents: [],
                  coloredState: true,
      			keepAlive: 300,
                  updateInterval: 5
              }
          },
      

      Any idea ?
      Many thanks for your time !

      posted in Utilities
      T
      Tak
    • 1 / 1