MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. svonbentzel
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    S
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 12
    • Groups 0

    svonbentzel

    @svonbentzel

    1
    Reputation
    856
    Profile views
    12
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    svonbentzel Unfollow Follow

    Best posts made by svonbentzel

    • Emoji Black & White

      Hallo together,

      i´ve installed the Emoji font vom GIT
      Emoji Font

      the font runs, but it will only shows the icons in Black & White like this:
      alt text

      i want Color :grinning:

      Anyone a hint how I can fix the issue?

      Thanks for answer ;-)

      # 1. Download the latest version
      wget https://github.com/eosrei/emojione-color-font/releases/download/v1.3/EmojiOneColor-SVGinOT-Linux-1.3.tar.gz
      # 2. Uncompress the file
      tar zxf EmojiOneColor-SVGinOT-Linux-1.3.tar.gz
      # 2.1. install Vera Bitstream Font
      sudo apt-get install install ttf-bitstream-vera
      # 3. Run the installer
      cd EmojiOneColor-SVGinOT-Linux-1.3
      ./install.sh
      
      posted in Troubleshooting
      S
      svonbentzel

    Latest posts made by svonbentzel

    • RE: Emoji Black & White

      on the remote Browser it shows normal and colored, but at the internet HDMI Display / Browser the icons are only B&W.

      0_1489410907418_Bildschirmfoto 2017-03-13 um 14.02.16.png

      posted in Troubleshooting
      S
      svonbentzel
    • Emoji Black & White

      Hallo together,

      i´ve installed the Emoji font vom GIT
      Emoji Font

      the font runs, but it will only shows the icons in Black & White like this:
      alt text

      i want Color :grinning:

      Anyone a hint how I can fix the issue?

      Thanks for answer ;-)

      # 1. Download the latest version
      wget https://github.com/eosrei/emojione-color-font/releases/download/v1.3/EmojiOneColor-SVGinOT-Linux-1.3.tar.gz
      # 2. Uncompress the file
      tar zxf EmojiOneColor-SVGinOT-Linux-1.3.tar.gz
      # 2.1. install Vera Bitstream Font
      sudo apt-get install install ttf-bitstream-vera
      # 3. Run the installer
      cd EmojiOneColor-SVGinOT-Linux-1.3
      ./install.sh
      
      posted in Troubleshooting
      S
      svonbentzel
    • RE: MMM-Todoist - Your todoist tasks on your mirror

      Hi,

      {
      				        module: 'MMM-Todoist',
      				        position: 'bottom_center',  // This can be any of the regions. Best results in left or right regions.
      				        header: 'Todoist', // This is optional
      				        config: { // See 'Configuration options' for more information.
      				            accessToken: 'c7xxxxxxxxxxxxxxxxxxxxxxxe3b54',
      							//lists: ["edit in MMM-Todoist.js"],
      				            maximumEntries: 10,
      				            interval: 60,
      				            fade: true,
      				      }
      				    },
      

      this is my config.js

      you must edit the /home/pi/MagicMirror/modules/MMM-Todois/MMM-Todoist.js

      edit the list entry from list: [“inbox”] to [“1234567890”]

      defaults: {
      	maximumEntries: 10,
      	lists: ["198511455"],
      	interval: 60,
      	fade: true,
      	fadePoint: 0.25
      
      posted in Productivity
      S
      svonbentzel
    • RE: MMM-Todoist - Your todoist tasks on your mirror

      i have figured out why the list is blank:

      in MMM-Todoist.js is the default

      
      Module.register("MMM-Todoist", {
      
       defaults: {
      	maximumEntries: 10,
      	lists: ["inbox"],
      	interval: 60,
      	fade: true,
      	fadePoint: 0.25
       },
      
      

      maybe a result of the fork from Wunderlist.

      you can see that with pm2 logs

      0|mm       | Create new todo fetcher for list: inbox - Interval: 60000
      

      the added value in the config.js doesn’t accept.

      so I write the correct list in MMM-Todoist.js

       defaults: {
      	maximumEntries: 10,
      	lists: ["198511455"],
      	interval: 60,
      	fade: true,
      	fadePoint: 0.25
      

      save and restart MM with pm2 restart mm

      then look at pm2 logs

      |mm       | Create new todo fetcher for list: 198511455 - Interval: 60000
      

      tadaaaa ;-) the correct fetcher ^^

      but why the config.js variable not in use — I don’t know ;-)

      posted in Productivity
      S
      svonbentzel
    • RE: MMM-Todoist - Your todoist tasks on your mirror

      @psm9 said in MMM-Todoist - Your todoist tasks on your mirror:

      Hi, all,

      Does anybody know how to sort this list? It adds new items at the bottom, so if there is no more room on the mirror, I can’t see them. I can’t figure out how to sort them on Todoist’s site easier, except alphabetically. I am using the “Alexa Shopping List” list in Todoist

      Thanks

      Hy, please can you post your working config for the Todoist module?
      My Module is starting but the Todos are blank ;-)

      Thank you

      posted in Productivity
      S
      svonbentzel
    • RE: MMM-PIR-Sensor off delay

      on this site is the git clone command false:
      MMM-PIR
      the correct clone command is:
      git clone https://github.com/**Patrick-Remy**/MMM-PIR-Sensor.git

      posted in Troubleshooting
      S
      svonbentzel
    • RE: MMM-PIR-Sensor off delay

      ahh, -ok thank you,

      i have used the old configuration options.

      Thank You

      posted in Troubleshooting
      S
      svonbentzel
    • RE: MMM-PIR-Sensor off delay

      sorry maybe i expressed wrong:

      this module is running perfectly but I need a OFF-DELAY (mirror turns on and stay a while on before switch off)

      like time.sleep(50)

      posted in Troubleshooting
      S
      svonbentzel
    • MMM-PIR-Sensor off delay

      Hello together,

      it is possible to add a off delay to the module?

      PAVIRO-MMM-PIR

      if true ? --> Where? ;-)

      Thanks for answers
      Best Greets

      posted in Troubleshooting
      S
      svonbentzel
    • RE: MMM-Wunderlist add / MM won't start

      you the best! Thank you!

      it runs,

      Made my Day!!

      posted in Troubleshooting
      S
      svonbentzel