• 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
  1. Home
  2. sek_is_back
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
S
Offline
  • Profile
  • Following 0
  • Followers 1
  • Topics 3
  • Posts 13
  • Groups 0

sek_is_back

@sek_is_back

3
Reputation
734
Profile views
13
Posts
1
Followers
0
Following
Joined Jan 12, 2017, 5:41 AM
Last Online May 21, 2023, 11:30 AM

sek_is_back Unfollow Follow

Best posts made by sek_is_back

  • MMM News Feed

    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

    posted in Troubleshooting
    S
    sek_is_back
    Jan 26, 2017, 2:58 PM
  • 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

    posted in Utilities
    S
    sek_is_back
    Feb 2, 2018, 4:28 AM
  • 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 ;-)

    posted in Troubleshooting
    S
    sek_is_back
    Jan 27, 2017, 8:34 AM

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/develop

    everything is fine now, Newsfeeder runs like expected since 1 Week

    posted in Troubleshooting
    S
    sek_is_back
    Sep 12, 2021, 9:45 AM
  • RE: Newsfeeder is going way to fast when showing news

    As a workaround, till a solution is found

    crontab -e
    @daily sudo reboot

    this will reboot the pi every night at 00:00 am.

    posted in Troubleshooting
    S
    sek_is_back
    Aug 29, 2021, 5:25 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.

    posted in Troubleshooting
    S
    sek_is_back
    Aug 22, 2021, 5:24 AM
  • 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
    
    
    posted in Troubleshooting
    S
    sek_is_back
    Aug 8, 2021, 7:12 AM
  • 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

    posted in Troubleshooting
    S
    sek_is_back
    Apr 22, 2018, 5:34 PM
  • 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

    posted in Troubleshooting
    S
    sek_is_back
    Apr 22, 2018, 4:48 PM
  • 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

    posted in Utilities
    S
    sek_is_back
    Feb 2, 2018, 4:28 AM
  • RE: Weatherunderground - currently - hourly - daily - configurable

    0_1517383419416_IMG_0862.JPG

    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?

    posted in Utilities
    S
    sek_is_back
    Jan 31, 2018, 7:30 AM
  • 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 1

    Script Power off:
    vcgencmd display_power 0

    than 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

    posted in Troubleshooting
    S
    sek_is_back
    Jan 21, 2018, 4:55 PM
  • 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 ;-)

    posted in Troubleshooting
    S
    sek_is_back
    Jan 27, 2017, 8:34 AM
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