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.

    .txt file include

    Scheduled Pinned Locked Moved Troubleshooting
    59 Posts 6 Posters 34.9k 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.
    • D Offline
      dominic @strawberry 3.141
      last edited by

      @strawberry-3.141 in the file are values from a dht22 temp.sensor.
      but i only need the values for Humidity = xx and Temperature =xx.

      is there any why to get only this values ?

      1 Reply Last reply Reply Quote 0
      • D Offline
        dominic @yawns
        last edited by

        @yawns Danke für deinen Tipp. Aber es läuft nun.
        Habe aber nun ein anderes Problem ;)
        gibt es eine Möglichkeit, die asugabe der txt Datei zu beregenzen, so dass mir nur bestimmte Werte angezeigt werden.
        In der Datei stehen Werte von einem dht22 sensor und ich möchte nur diese werte ausgeben ohne die den anderen INhalt.

        1 Reply Last reply Reply Quote 0
        • strawberry 3.141S Offline
          strawberry 3.141 Project Sponsor Module Developer
          last edited by

          are these all in seperate lines?

          if so then you could check in a for loop if there is the word humidity or temperature otherwise ignore the line

          Please create a github issue if you need help, so I can keep track

          D 1 Reply Last reply Reply Quote 0
          • D Offline
            dominic @strawberry 3.141
            last edited by

            @strawberry-3.141
            No. There is only one line.

            1 Reply Last reply Reply Quote 0
            • strawberry 3.141S Offline
              strawberry 3.141 Project Sponsor Module Developer
              last edited by

              can you please upload your txt file i have no clue how it looks like, so we can help you out with that

              Please create a github issue if you need help, so I can keep track

              D 2 Replies Last reply Reply Quote 0
              • D Offline
                dominic @strawberry 3.141
                last edited by

                @strawberry-3.141
                Raspberry Pi wiringPi DHT22 reader www.lolware.net Data not good, skip Data not good, skip Data not good, skip Humidity = 47.10 % Temperature = 24.50 *C .

                This is the contetn of the .txt file. And its all in one line.

                1 Reply Last reply Reply Quote 0
                • D Offline
                  dominic @strawberry 3.141
                  last edited by

                  @strawberry-3.141 Hi, do you have any idea?

                  1 Reply Last reply Reply Quote 0
                  • strawberry 3.141S Offline
                    strawberry 3.141 Project Sponsor Module Developer
                    last edited by

                    getDom: function(){
                    		var wrapper = document.createElement("div");
                    		if(this.dataFile){
                                            var humidityRegExp = /Humidity = (.*?) %/ig;
                                            var humidity = humidityRegExp.exec(this.dataFile)[1];
                    
                                            var temperatureRegExp = /Temperature = (.*?) *C/ig;
                                            var temperature = temperatureRegExp.exec(this.dataFile)[1];
                    			wrapper.innerHTML = "Humidity: " + humidity + "% and Temperature: " + temperature + "°C";
                    		} else {
                    			wrapper.innerHTML = "No data";
                    		}
                    		return wrapper;
                    	}
                    

                    Please create a github issue if you need help, so I can keep track

                    D 1 Reply Last reply Reply Quote 0
                    • D Offline
                      dominic @strawberry 3.141
                      last edited by

                      @strawberry-3.141 HI Thanks. Sorry but, where do I insert the code?
                      I´m new in this…

                      1 Reply Last reply Reply Quote 0
                      • strawberry 3.141S Offline
                        strawberry 3.141 Project Sponsor Module Developer
                        last edited by

                        in sensor.js you have the function getdom replace it with this

                        Please create a github issue if you need help, so I can keep track

                        D 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 6
                        • 5 / 6
                        • 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