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.

    MMM-DHT22 Humidity and Temperature Module

    Scheduled Pinned Locked Moved Utilities
    47 Posts 14 Posters 47.3k Views 14 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.
    • P Offline
      PaulB
      last edited by

      Hey guys :) Hope you are all good.
      Finally I have the time to work on this module again :)
      I had the same errors like you before and unsuprisingly did not found a solution for it.

      Is someone in this thread still active?

      J 1 Reply Last reply Reply Quote 0
      • J Offline
        Johans @PaulB
        last edited by

        @PaulB - glad you have found some time to work on it.
        Yes I still have the problem with reading the data in the MM.
        Hope you can find the cause. I would like to help you, but i’m not a programmer.
        The only thing I could help on is perhaps some beta testing.
        Cheers.
        Johan

        1 Reply Last reply Reply Quote 0
        • DocVooDooD Offline
          DocVooDoo
          last edited by

          Hey, i have the same problem.
          With “./Adafruit_Python_DHT/examples/AdafruitDHT.py 22 27” comes the Temperatur “Temp=20.1* Humidity=29.3%”
          The DHT22 is Pinned on PIN 13 (27) (WiringPi 2). On the Mirror is the Temperatur and the Humidity undefined.
          Whats the Problem? I found nothing…

          R 1 Reply Last reply Reply Quote 0
          • R Offline
            ryck Module Developer @DocVooDoo
            last edited by

            @DocVooDoo Then I don’t know, maybe there is something wrong with the module…

            Have you tried mine? https://github.com/ryck/MMM-DHT-Sensor

            DocVooDooD 1 Reply Last reply Reply Quote 0
            • DocVooDooD Offline
              DocVooDoo @ryck
              last edited by

              @ryck Hi. yes, a minute ago. He says “no data returned”.

              R 1 Reply Last reply Reply Quote 1
              • R Offline
                ryck Module Developer @DocVooDoo
                last edited by

                @DocVooDoo sometimes the raspberry pi needs some time to pick up the values… try to increase the update time (ie, 30 seconds) and wait for it to update a couple of times…

                DocVooDooD 1 Reply Last reply Reply Quote 0
                • DocVooDooD Offline
                  DocVooDoo @ryck
                  last edited by

                  @ryck nothing has changed. i have “node serveronly” running, and the log says “Error: failed to read sensor at Error (native)”
                  but the sensor works… look

                  R 1 Reply Last reply Reply Quote 0
                  • R Offline
                    ryck Module Developer @DocVooDoo
                    last edited by

                    @DocVooDoo Weird… did you follow all the instructions? ie, install bcm2835, npm install, etc?

                    DocVooDooD 1 Reply Last reply Reply Quote 0
                    • DocVooDooD Offline
                      DocVooDoo @ryck
                      last edited by

                      @ryck Yes of course.

                      R 1 Reply Last reply Reply Quote 0
                      • R Offline
                        ryck Module Developer @DocVooDoo
                        last edited by

                        @DocVooDoo No idea then… Can you paste here the error you get?

                        DocVooDooD 1 Reply Last reply Reply Quote 0
                        • DocVooDooD Offline
                          DocVooDoo @ryck
                          last edited by

                          @ryck only this Bild Text
                          then nothing on the log in node serveronly screen

                          R 1 Reply Last reply Reply Quote 0
                          • R Offline
                            ryck Module Developer @DocVooDoo
                            last edited by

                            @DocVooDoo well, no idea then… Have you tried to run the normal version (instead of the serveronly)?

                            DocVooDooD 2 Replies Last reply Reply Quote 0
                            • DocVooDooD Offline
                              DocVooDoo @ryck
                              last edited by

                              @ryck yes, the same problem…

                              1 Reply Last reply Reply Quote 0
                              • DocVooDooD Offline
                                DocVooDoo @ryck
                                last edited by

                                @ryck is it possible that the module root rights needs but does not get?

                                with another module comes the same error. root privileges are needed there

                                R 1 Reply Last reply Reply Quote 0
                                • R Offline
                                  ryck Module Developer @DocVooDoo
                                  last edited by

                                  @DocVooDoo I guess that depends on how you installed magicmirror… did you use sudo?

                                  DocVooDooD 1 Reply Last reply Reply Quote 0
                                  • DocVooDooD Offline
                                    DocVooDoo @ryck
                                    last edited by

                                    @ryck no, without sudo. only with the command
                                    bash -c “$(curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/master/installers/raspberry.sh)”

                                    1 Reply Last reply Reply Quote 0
                                    • yawnsY Offline
                                      yawns Moderator
                                      last edited by

                                      Some modules or dependencies require access to the GPIO
                                      The DHT sensor module I wrote needs this as well.
                                      In terminal please try this
                                      sudo adduser -g $USER gpio

                                      I can’t remember if you need to reboot afterwards, but it won’t hurt. Then try again accessing the sensor

                                      DocVooDooD 1 Reply Last reply Reply Quote 0
                                      • DocVooDooD Offline
                                        DocVooDoo @yawns
                                        last edited by

                                        @yawns
                                        Hi. Thanks for your help. The user “pi” is already a member of the group “gpio”.

                                        With Adafruit works the Sensor. Whether with or without sudo…

                                        1 Reply Last reply Reply Quote 0
                                        • P Offline
                                          pinsdorf Module Developer
                                          last edited by

                                          Any updates on this? I have the same problems as @DocVooDoo and others, i.e. Adafruit code works like a charm, dht_var not.

                                          Difference I noticed is that dht_var uses wiringpi library and Adafruit not?! I tried a reinstall of wiringpi package without success.

                                          Next, I compared the implementations of dht_var and the Adafruit driver for DHT22.

                                          The essence of the Adafruit code is in file Adafruit_Python_DHT/source/Raspberry_Pi_2/pi_2_dht_read.c. It is meant for Pi2 and Pi3, implemented in C, and defines a function int pi_2_dht_read(int type, int pin, float* humidity, float* temperature). It implements the communication with the sensor using a 1-wire bus. The rest of the Adafruit package is mostly (well-done) sugar-coating for Python usage and selecting the right driver for any given platform.

                                          We could simply rewrite dht_var by using this driver code. What do you think?

                                          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
                                          • 3
                                          • 2 / 3
                                          • 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