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.

    Mi Temperature2 with xiaomi hygromether

    Scheduled Pinned Locked Moved Requests
    17 Posts 6 Posters 4.9k Views 5 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.
    • R Offline
      rubinho101
      last edited by

      Hi @rubenix , I wanna do the same thing without a gateway. I got a LYWSDCGQ Temp and Humidity sensor. I am able to read the values with mitemp and btlewrap on a Rpi4, but dont know yet how to plot the data to MMM efficiently. Any ideas?

      1 Reply Last reply Reply Quote 0
      • rubenixR Offline
        rubenix
        last edited by

        Sorry @rubinho101 do not have a clue; Thats why I asked here.
        Hope someone can help us :crossed_fingers_light_skin_tone:
        There are loots of brilliant minds here :call_me_hand_light_skin_tone:
        Two Rubens all over the world looking for the same f thing…LOL
        seen your post answering mine on github too…

        1 Reply Last reply Reply Quote 0
        • rubenixR Offline
          rubenix
          last edited by

          no one can give some instructions for a newby?

          1 Reply Last reply Reply Quote 0
          • A Offline
            Albert2002
            last edited by

            I would be interested in this module as well. Am not able to code, but at least am able test.

            rubenixR 1 Reply Last reply Reply Quote 0
            • rubenixR Offline
              rubenix @Albert2002
              last edited by

              @Albert2002 am not a coder neither but i can check/test too
              at the moment data its stored on a txt file so next move its creating my very first module (I should have underlined and bold that) / grab the text from the txt file created by the python script and display it on the Mirror; sounds like easy (sure it is) but its a big deal for me as im not a coder and have no much time to look at…
              like every single thing on earth it needs understanding on what we need (this its kinda sorted) and how it can be accomplished (thats the thing) --> so it means TIME :eleven-thirty: :eleven_o_clock:

              hope someone can give us a kindly hand on this :call_me_hand_light_skin_tone:

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

                @rubenix @Albert2002 I created a module to display the values without the gateway. It works fine for me.

                https://github.com/rubinho101/MMM-01ZM

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

                  powa … what a lot of courage for installing :/ (I’m thinking to newbies)

                  Please, try to do better with a package.json file… (eventually take a look in any installer in my modules)

                  1 Reply Last reply Reply Quote 0
                  • S Offline
                    sdetweil @rubinho101
                    last edited by sdetweil

                    @rubinho101 followup to @Bugsounet’s recommendation,

                    npm init
                    Will prompt u thru creating the package.json
                    npm install ??? -save will add the library ?? to the package.json dependencies, so npm install will do the work.

                    For non-node libraries, u can use the postinstall script to do the work for your pip libraries.

                    And u could use sed to change the code u need to fix…

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

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

                      Thanks @rubinho101 I’ve the LYWSD03MMC version not the LYWSDCGQ so I don’t know if this actually will work…
                      Instructions are detailed but seems quite confusing for a newbie like me…:confused_face:

                      R 1 Reply Last reply Reply Quote 0
                      • R Offline
                        rubinho101 @sdetweil
                        last edited by

                        @sdetweil thanks for your input. I have setup the package.json and postinstaller.sh. The postinstaller works fine when I run bash postinstaller.sh from the console. But when the package.json invokes the postinstaller I got the following errors:

                        sh: 1: img/postinstaller.sh: Permission denied
                        npm ERR! code ELIFECYCLE
                        npm ERR! errno 126
                        npm ERR! mmm-01zm@0.0.5 postinstall: `img/postinstaller.sh`
                        npm ERR! Exit status 126
                        npm ERR! 
                        npm ERR! Failed at the mmm-01zm@0.0.5 postinstall script.
                        npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
                        
                        

                        How can the shell be executed without giving it permissions / running it manually from the console?

                        Thanks

                        S 1 Reply Last reply Reply Quote 0
                        • R Offline
                          rubinho101 @rubenix
                          last edited by

                          @rubenix said in Mi Temperature2 with xiaomi hygromether:

                          Thanks @rubinho101 I’ve the LYWSD03MMC version not the LYWSDCGQ so I don’t know if this actually will work…
                          Instructions are detailed but seems quite confusing for a newbie like me…:confused_face:

                          To my understanding there are some fundamental differences between the LYWSDCGQ and LYWSD03MMC. Whereas the former sends the data in the Advertisement Channels (so basically anyone can read the values), your sensor requires (a more privacy friendly) actual connection. I assume while this connection is established no other BLE devices can be parsed. https://github.com/JsBergbau/MiTemperature2 should work for your sensor. Maybe I find some time to integrate this library as well and a concept for BLE balancing depending on the type and number of sensors.

                          rubenixR 1 Reply Last reply Reply Quote 0
                          • rubenixR Offline
                            rubenix @rubinho101
                            last edited by

                            @rubinho101 said in Mi Temperature2 with xiaomi hygromether:

                            @rubenix said in Mi Temperature2 with xiaomi hygromether:

                            Thanks @rubinho101 I’ve the LYWSD03MMC version not the LYWSDCGQ so I don’t know if this actually will work…
                            Instructions are detailed but seems quite confusing for a newbie like me…:confused_face:

                            To my understanding there are some fundamental differences between the LYWSDCGQ and LYWSD03MMC. Whereas the former sends the data in the Advertisement Channels (so basically anyone can read the values), your sensor requires (a more privacy friendly) actual connection. I assume while this connection is established no other BLE devices can be parsed. https://github.com/JsBergbau/MiTemperature2 should work for your sensor. Maybe I find some time to integrate this library as well and a concept for BLE balancing depending on the type and number of sensors.

                            yeah thats it, thats the link I posted on the 1st post actually, and it works with that indeed (read first post)

                            1 Reply Last reply Reply Quote 0
                            • S Offline
                              sdetweil @rubinho101
                              last edited by

                              @rubinho101 u need to.mark the postinstall script executable.

                              chmod +x filename 
                              

                              Sam

                              How to add modules

                              learning how to use browser developers window for css changes

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

                                @sdetweil I added the postinstaller.sh and I hope it’s easier for newbies to get the module run. In addition, I added an option for the SDS011 PM Air Quality sensor and a correction function based on current humidity.

                                1 Reply Last reply Reply Quote 1

                                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 / 1
                                • 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