is it possible to change the module that it only shows news from the actuall day
I use the german news feed from tagesschau.de and if it is possibel i want to see only the news from today
Read the statement by Michael Teeuw here.
Best posts made by sek_is_back
-
MMM News Feed
-
RE: Weatherunderground - currently - hourly - daily - configurable
@AliAS thank you for your help, .MMM-WunderGround .tableheader dosn’t work for me. But Mykle1 wrote a post called “How to find and use key commands in MM” and with ctr + shift + i it opens the dev tool and i played around a little. So it was easy to find that the one that I missed, in my case it was .MMM-WunderGround .center
I like to learn new stuff, thanks a lot guys for your help
-
RE: MMM News Feed
i did this, but in that case i miss some news, ill wait and learn, maybe i can fix this by my own in the future ;-)
Latest posts made by sek_is_back
-
RE: Newsfeeder is going way to fast when showing news
updated to develop version from GitHub
https://github.com/MichMich/MagicMirror/tree/developeverything is fine now, Newsfeeder runs like expected since 1 Week
-
RE: Newsfeeder is going way to fast when showing news
As a workaround, till a solution is found
crontab -e
@daily sudo rebootthis will reboot the pi every night at 00:00 am.
-
RE: Newsfeeder is going way to fast when showing news
i got exact the same strange behavior. one day after my last post, the newsfeed worked like expected for 2 weeks. today the updateInterval seems to be ignored.
After a pm2 restart everything is fine again.Now i wrote a cron to restart the Mirror every Night at 2am. will see if this will help.
-
RE: Newsfeeder is going way to fast when showing news
i can confirm this, same on my side
feeds: [ { title: "Tagesschau", url: "http://www.tagesschau.de/xml/rss2" } ], showSourceTitle: false, showDescription: true, ignoreOldItems: true, ignoreOlderThan: 86400000, updateInterval: 18000, showPublishDate: false
-
RE: Weather module not getting shown
@MichaelS said in Wetter wird nicht angezigt:
module: “currentweather”,
heißt das Modul currentweather? oder MMM-Wounderground?
unter Modul muss der Name des Moduls stehen der gleich mit dem Name des Ordners ist -
RE: Weather module not getting shown
@MichaelS said in Wetter wird nicht angezigt:
Warum umbenennen?
because the Mainprogram looks for a file named config.js without this file it dontn know what to display
-
RE: Weatherunderground - currently - hourly - daily - configurable
@AliAS thank you for your help, .MMM-WunderGround .tableheader dosn’t work for me. But Mykle1 wrote a post called “How to find and use key commands in MM” and with ctr + shift + i it opens the dev tool and i played around a little. So it was easy to find that the one that I missed, in my case it was .MMM-WunderGround .center
I like to learn new stuff, thanks a lot guys for your help
-
RE: Weatherunderground - currently - hourly - daily - configurable
And at the end I need help.
In the last 3days i learned a lot about css in this forum.
But i didn’t find how to change the size for the Icons wind direction and speed.
I found in the MMM-WunderGround.js that there should be a weather-icons-wind.css
but I can’t find it.Can anyone help me how to change the size and maybe the color?
-
RE: MMM-PIR-SENSOR not working
I had the same problems and I dont know why. So I searched for another solution. Now it works perfect.
I wrote one bash script for the power off and one for the power on.Script Power on:
vcgencmd display_power 1Script Power off:
vcgencmd display_power 0than I used this Pyhton for the PIR
#!/usr/bin/env python import sys import time import RPi.GPIO as io import subprocess io.setmode(io.BCM) SHUTOFF_DELAY = 300 # seconds PIR_PIN = 25 # 22 on the board LED_PIN = 16 # 36 on the board def main(): io.setup(PIR_PIN, io.IN) io.setup(LED_PIN, io.OUT) turned_off = False last_motion_time = time.time() while True: if io.input(PIR_PIN): last_motion_time = time.time() io.output(LED_PIN, io.LOW) print ".", sys.stdout.flush() if turned_off: turned_off = False turn_on() else: if not turned_off and time.time() > (last_motion_time + SHUTOFF_DELAY): turned_off = True turn_off() if not turned_off and time.time() > (last_motion_time + 1): io.output(LED_PIN, io.HIGH) time.sleep(.1) def turn_on(): subprocess.call("sh /home/pi/MagicMirror/pir/monitor_on.sh", shell=True) def turn_off(): subprocess.call("sh /home/pi/MagicMirror/pir/monitor_off.sh", shell=True) if __name__ == '__main__': try: main() except KeyboardInterrupt: io.cleanup()
I tryed to upload but not enough privileges
-
RE: MMM News Feed
i did this, but in that case i miss some news, ill wait and learn, maybe i can fix this by my own in the future ;-)