• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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.

a new problem with fhem

Scheduled Pinned Locked Moved Unsolved Troubleshooting
17 Posts 4 Posters 3.7k Views 4 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.
  • K Offline
    kusselin
    last edited by Dec 20, 2019, 5:35 PM

    o.k. thanks all for the good job to me. I will always better in Magic Mirror. Now i have installed the fhem module with:

    cd ~/MagicMirror/modules
    git clone https://github.com/BenRoe/MMM-FHEM
    
    without npm install
    

    then i go to the config an i put this into:

    {
        module: 'MMM-FHEM',
        position: 'bottom_bar',
        config: {
          host: 'my IP',
          port: '8083',
          https: false,
          devices: [
                      { deviceName: 'Temperatur_Feuchte_Speicher',
                        deviceReadings: [
                                          { name: 'temperature', icon: 'wi wi-thermometer', suffix: '°' },
                                          { name: 'humidity', icon: 'wi wi-humidity', suffix: '%' },
                                        ],
                      },
                  
                    ],
        },
      },
    

    this is the device name of my sensor
    but when i restart the mirror, my mirror is black on screen :-(

    F 1 Reply Last reply Dec 20, 2019, 6:23 PM Reply Quote 0
    • F Offline
      Fozi Project Sponsor @kusselin
      last edited by Dec 20, 2019, 6:23 PM

      @kusselin You must insert the IP-address of your FHEM in

      host: 'my IP',
      

      Check also if it is running on port 8083 or on another port.

      If ‘npm install’ is required by the author of the module then it is advisable to do so (at least that is required so in the README.MD on github)

      Just to make sure: This module is not supported anymore (as stated on the github repo).

      HowTo: Replace PIR Sensor with a RCWL-0516 Microwave Sensor

      K 1 Reply Last reply Dec 21, 2019, 8:40 PM Reply Quote 0
      • T Offline
        thedoorsfanatic
        last edited by Dec 21, 2019, 1:12 PM

        Can’t spot a mistake at first glance. Does the mirror work if you deactivate the module? For example, with disabled: true,

        Kann auf den ersten Blick keinen Fehler entdecken. Funktioniert der Spiegel, wenn du das Modul deaktivierst? Z.B. mit disabled:true,

        My Smart Mirror YouTube playlist: https://www.youtube.com/playlist?list=PL9Iv_4Mvy6o2tnvdhNBstVWNefgUP9ELp

        1 Reply Last reply Reply Quote 0
        • K Offline
          kusselin @Fozi
          last edited by Dec 21, 2019, 8:40 PM

          @Fozi said in a new problem with fhem:

          @kusselin You must insert the IP-address of your FHEM in

          host: 'my IP',
          

          Check also if it is running on port 8083 or on another port.

          If ‘npm install’ is required by the author of the module then it is advisable to do so (at least that is required so in the README.MD on github)

          Just to make sure: This module is not supported anymore (as stated on the github repo).

          Hi fozi, instead of IP NAS I of course wrote my IP 192.168.xxx.xx and the port is also 8083 standard

          F 1 Reply Last reply Dec 21, 2019, 9:01 PM Reply Quote 0
          • F Offline
            Fozi Project Sponsor @kusselin
            last edited by Dec 21, 2019, 9:01 PM

            @kusselin Have you deactivated the module like @thedoorsfanatic recommended? Alternatively you can also comment the module in config.js. Just to make sure that there are no other side-effects.

            /*
            ….
            …..
            …..
            */
            

            HowTo: Replace PIR Sensor with a RCWL-0516 Microwave Sensor

            1 Reply Last reply Reply Quote 0
            • K Offline
              kusselin
              last edited by kusselin Dec 21, 2019, 9:16 PM Dec 21, 2019, 9:15 PM

              Sorry, i Havent. Give me Time tomorrow please.

              1 Reply Last reply Reply Quote 0
              • K Offline
                kusselin
                last edited by Dec 23, 2019, 2:46 PM

                @thedoorsfanatic said in a new problem with fhem:

                disabled:true,

                yes than i can see the mirror again and i have the npm install in the fhem directory make.
                but so the mirror is not show again

                F 1 Reply Last reply Dec 23, 2019, 3:50 PM Reply Quote 0
                • F Offline
                  Fozi Project Sponsor @kusselin
                  last edited by Dec 23, 2019, 3:50 PM

                  @kusselin said in a new problem with fhem:

                  yes than i can see the mirror again and i have the npm install in the fhem directory make.
                  but so the mirror is not show again

                  If the mirror is working again after deactivating the module, then remove the module from the /modules directory and re-install it from scratch.

                  $ sudo rm -R MMM-FHEM
                  $ git clone https://github.com/BenRoe/MMM-FHEM
                  $ cd MMM-FHEM
                  $ npm install
                  

                  HowTo: Replace PIR Sensor with a RCWL-0516 Microwave Sensor

                  1 Reply Last reply Reply Quote 1
                  • K Offline
                    kusselin
                    last edited by Dec 24, 2019, 8:51 PM

                    @Fozi said in a new problem with fhem:

                    sudo rm -R MMM-FHEM

                    whats that!!

                    pi@raspberrypi:~ $  sudo rm -R MMM-FHEM
                    rm: das Entfernen von 'MMM-FHEM' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
                    pi@raspberrypi:~ $ cd ~/MagicMirror/modules/MMM-FHEM
                    pi@raspberrypi:~/MagicMirror/modules/MMM-FHEM $ sudo rm -R MMM-FHEM
                    rm: das Entfernen von 'MMM-FHEM' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
                    pi@raspberrypi:~/MagicMirror/modules/MMM-FHEM $
                    
                    
                    T F 2 Replies Last reply Dec 25, 2019, 7:46 AM Reply Quote 0
                    • T Offline
                      thedoorsfanatic @kusselin
                      last edited by Dec 25, 2019, 7:46 AM

                      @kusselin
                      Du kannst den Ordner ja auch händisch über den Dateiexplorer löschen

                      My Smart Mirror YouTube playlist: https://www.youtube.com/playlist?list=PL9Iv_4Mvy6o2tnvdhNBstVWNefgUP9ELp

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      1 / 2
                      • First post
                        2/17
                        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