MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Extension of MMM-Tools (Bugsounet)

    Scheduled Pinned Locked Moved Development
    30 Posts 6 Posters 7.3k Views 6 Watching
    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.
    • M Offline
      MiPraSo
      last edited by

      I would like to extend the module.
      I would like to display both IP addresses.
      What I have already done:

      Changed the cmdline.txt to show a wlan0 as interface name again (ifconfig)

      In node-helper.js I added the following:

      IP: "ip -4 a show lo | grep inet",
      IP_LAN: "ip -4 a show eth0 | grep inet"
      IP_WLAN: "ip -4 a show wlan0 | grep inet"
      

      Implemented these two functions:

       getIP_WLAN : function() {
          exec (this.scripts['IP_WLAN'], (err, stdout, stderr)=>{
            if (err == zero) {
              this.WLAN = stdout.trim().match(/\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/)
            }
          })
        },
      
        getIP_LAN : function() {
          exec (this.scripts['IP_LAN'], (err, stdout, stderr)=>{
            if (err == zero) {
              var matched = stdout.trim().match(/\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/)
              this.IP_LAN = (matched) ? matched[0] : "Unknown"
            }
          })
        },
      

      Unfortunately, I did not get any further, I can’t manage to output the values. My goal is what is written there:

      IP       eth0: 192.168.1.xx, wlan0: 192.168.1.yy
      

      Since I have no experience with JS, I am now stucking here…
      Is anyone interested in helping me with this?

      Greetings

      S 1 Reply Last reply Reply Quote 0
      • S Do not disturb
        sdetweil @MiPraSo
        last edited by

        @MiPraSo in mm, the node_helper is the data ( ip addresses) collector,
        and the modulename.js is the data presenter. See the getDom() routine which builds the html content to be displayed

        Sam

        How to add modules

        learning how to use browser developers window for css changes

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

          Hi, thanks for you feedback ;)

          don’t worry about this !
          I will start the MMM-Tools v2 in a few days !
          I will start this module with new code and a new tool without sh script :)
          of course it will have news functionally like yours

          1 Reply Last reply Reply Quote 1
          • M Offline
            MiPraSo
            last edited by

            Hi @Bugsounet,
            I’ll be patient and I’ll wait…
            Let me be your alpha and beta tester. :lady_beetle:

            Thanks for your feedback.

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

              In the last update I add uptime and uptime Record

              now, I be back for some news !

              I changed the code by the new library without sh / bash script and here is the performance:

              [2020-08-11 01:32:07.710] [LOG]    CPU Usage 9
              [2020-08-11 01:32:07.724] [LOG]    CPU Temp: 44
              [2020-08-11 01:32:07.726] [LOG]    Mem Total 7934
              [2020-08-11 01:32:07.726] [LOG]    Mem used 3212
              [2020-08-11 01:32:07.726] [LOG]    Mem % 40
              

              so very good react ;)

              now i will try:

              • display info about / partition and /home partition (choice of user of course)
              • display ALL used ip adress (and trafic if you want)
              • maybe determinate % of cpu used with MagicMirror (maybe because not tested)
              • what 'is the users connected
              • display RPI version

              Sure, all info will not displayed in config by default. You can enable (or disable) it as you want ;)

              After, the question is :
              I keep the current visual or I change !?

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

                Hi !

                MMM-Tools fetch all info needed : (tested on my dev platform and not definitive)

                [2020-08-13 17:55:13.191] [LOG]    Send this Status: {
                  OS: 'Debian 10 (buster)',
                  SYS: 'Core™ i5-3350P',
                  NETWORK: [
                    enp3s0: { ip: '192.168.0.17', type: 'wired', default: true },
                    wlx98ded00d0521: { ip: '192.168.0.193', type: 'wireless', default: false }
                  ],
                  MEMORY: [ total: '7934Mb', used: '2613Mb', percent: '40' ],
                  STORAGE: [
                    '/': { size: '39.98Go', used: '10.33Go', use: 25.84 },
                    '/home': { size: '383.49Go', used: '53.64Go', use: 13.99 },
                    '/boot/efi': { size: '96.00Mo', used: '31.57Mo', use: 32.89 },
                    '/media/Data': { size: '540.76Go', used: '96.68Go', use: 17.88 }
                  ],
                  CPU: [ temp: '44.0', usage: '23' ],
                  UPTIME: '1 jour 17 heures 25 minutes',
                  RECORD: '27 jours 18 heures 49 minutes',
                  SCREEN_STATUS: 'OFF'
                }
                

                of course SYS info is the result of CPU type or RPI type
                exemple for a RPI 4:

                SYS: 'Raspberry Pi 4 Model B Rev 1.1'
                

                RPI 3:

                SYS: 'Raspberry Pi 3 Model B Plus Rev 1.3'
                

                Now, i will do a new visual for displaying all information received ;)
                Note: If somebody need other information to display, just tell me :)

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

                  This is current information and visual fetched in my dev branch

                  Raspberry:

                  Screenshot_20200818_153056.png

                  My dev platform:

                  Screenshot_20200818.png

                  Of course, you can hide, if you want, not needed partitions info.
                  if you have multiple network, the default network is represented with a star

                  • You can try the dev branch with this command:

                  (assumed that v1 is installed)

                  cd ~/MagicMirror/modules/MMM-Tools
                  git checkout -f dev
                  npm install
                  
                  • to return to v1:
                  cd ~/MagicMirror/modules/MMM-Tools
                  git checkout -f master
                  npm install
                  

                  do not hesitate to give me feedback.
                  if any other informations is missing, just tell me :)

                  M 1 Reply Last reply Reply Quote 1
                  • M Offline
                    MiPraSo @Guest
                    last edited by

                    @Bugsounet

                    Looks good…
                    Here’s some issues:

                    1. Is there an example for the config.cfg?
                    2. The alignment is now right again, in the old version I was able to adjust it to the left?
                    3. How do I get the display wider, in the old version I could adjust it?
                    4. How can I change the label, from UPTIME to Laufzeit or *LAN to eth0?
                    5. And what are “Go” and “Mo” which should be about “GB” and “MB”?

                    Regards,

                    Michael

                    MMM-ToolsV2.PNG

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

                      1. I force all value to display, I don’t really add some feature to personalize actually
                        you can’t actually config:
                        recordUptime: true, to record and display : record uptime
                        partitionExclude : [], fo exclude partition to display
                        sample: partitionExclude : [ "/boot" ], if you don’t want display info about /boot partition

                      2. I have to ajust css code

                      3. not coded yet (personal feature will be coded in the end)

                      4. I’m trying to do a translation file (wait a while ;) )
                        just tell me what value to translate (and translation needed)
                        For Lan to eth0. I have fetch the name info by not displayed actually (because in my dev the WLAN interface have a very very long name)
                        so i have planned a feature for name choice displaying (native or WLAN/LAN)

                      5. I will do dual code (actually it’s a test)

                      I will be back to you when i have done some totentials change

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

                        Yeah !

                        • I have just commit some change on dev branch
                        • I add the new configuration part in Readme
                        • I correct some css code
                        • I correct unit Go to Gb
                        • added translation file (de too)
                          actually supported : en, fr, de (thx to @lxne), id (80% done) and sv (thx to @el97 from github), it (thx to @MrDondoT from github)
                          I can add other language just help me to do the translate file
                        • added telegramBot command /status

                        MagicMirror:

                        TelegamBot:

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

                          new change:
                          useMagicMirror: true, in UPTIME: {}
                          for choice of system uptime (since boot) or magic mirror uptime

                          1 Reply Last reply Reply Quote 0
                          • R Offline
                            robertybob
                            last edited by

                            I’m liking these developments, I’m watching with great interest :)

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

                              I finalize ;) and go to master !

                              You can try it, if you want

                              cd ~/MagicMirror/modules
                              git clone -b dev https://github.com/bugsounet/MMM-Tools
                              cd MMM-Tools
                              npm install
                              

                              and read the dev readme for config

                              Edit for ALL!

                              • Dev is now freeze and waiting for YOUR debug, corrects or additions
                              • For me it’s ready for release :)
                              • Give me your Feedback !
                              • I can display all user connected but … really interesting, i don’t know ??
                              • Maybe i have forget something ?

                              I do this module for you !
                              actually for my usage, it’s ok
                              so tell me what do you want to display ;)

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

                                So ?

                                Added : MMM-TelegramBot warning (wanted by @lxne)
                                Modified translation: it (thx @Cr4z33) , de (thx @lxne)

                                Can I Release it ? nothing else to add ?

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

                                  MMM-Tools v2.0.0 is now Released !

                                  Please Read wiki for new configuration

                                  1 Reply Last reply Reply Quote 0
                                  • R Offline
                                    robertybob @Guest
                                    last edited by

                                    @Bugsounet I will download it this week and report back ! :D

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

                                      no problem, in all case, I release it (It is necessary, otherwise I will never do it!)

                                      It’s not because I’m releasing that I’m going to drop the project!
                                      if necessary I will add new request or correct some bug (maybe if happen)

                                      when i promise something i try to do my best for you all ! :)

                                      1 Reply Last reply Reply Quote 0
                                      • M Offline
                                        MrDondoT
                                        last edited by MrDondoT

                                        @Bugsounet - fyi using the module with MMM-TelegramBot happens that “The usage of CPU is …” over 100% (129 percent), I even got 238 percent

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

                                          yes i know, i try an average value of cpu usage, i don’t know about the unit return value … I have X100 value but i think it’s not that

                                          so disable it (set it to 0), i will see

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

                                            so … what is he unit of this:
                                            load average: 0,97, 0,72, 0,62

                                            i see some value > 1.5
                                            so it’s not in %

                                            I don’t want to check with the actual CPU usage value, because it’s not for a warning. i think average is a good choice but … my npm library for average not works like I want … humm

                                            S 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • First post
                                              Last post
                                            Enjoying MagicMirror? Please consider a donation!
                                            MagicMirror created by Michael Teeuw.
                                            Forum managed by Sam, technical setup by Karsten.
                                            This forum is using NodeBB as its core | Contributors
                                            Contact | Privacy Policy