• 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.

.txt file include

Scheduled Pinned Locked Moved Troubleshooting
59 Posts 6 Posters 31.6k 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 @yawns
    last edited by Sep 2, 2016, 1:41 PM

    @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
    • S Offline
      strawberry 3.141 Project Sponsor Module Developer
      last edited by Sep 2, 2016, 2:10 PM

      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 Sep 2, 2016, 2:26 PM Reply Quote 0
      • D Offline
        dominic @strawberry 3.141
        last edited by Sep 2, 2016, 2:26 PM

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

        1 Reply Last reply Reply Quote 0
        • S Offline
          strawberry 3.141 Project Sponsor Module Developer
          last edited by Sep 2, 2016, 3:11 PM

          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 Sep 3, 2016, 1:02 PM Reply Quote 0
          • D Offline
            dominic @strawberry 3.141
            last edited by Sep 3, 2016, 1:02 PM

            @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 Sep 9, 2016, 2:42 PM

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

              1 Reply Last reply Reply Quote 0
              • S Offline
                strawberry 3.141 Project Sponsor Module Developer
                last edited by Sep 9, 2016, 5:16 PM

                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 Sep 9, 2016, 5:20 PM Reply Quote 0
                • D Offline
                  dominic @strawberry 3.141
                  last edited by Sep 9, 2016, 5:20 PM

                  @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
                  • S Offline
                    strawberry 3.141 Project Sponsor Module Developer
                    last edited by Sep 9, 2016, 5:22 PM

                    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 Sep 9, 2016, 5:25 PM Reply Quote 0
                    • D Offline
                      dominic @strawberry 3.141
                      last edited by Sep 9, 2016, 5:25 PM

                      @strawberry-3.141 Yeah :) Thanks :)

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