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

Creating a module to display daily horoscopes

Scheduled Pinned Locked Moved Solved Development
26 Posts 7 Posters 17.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.
  • M Offline
    morozgrafix Moderator @pflnpi0305
    last edited by Jan 30, 2017, 5:49 AM

    @pflnpi0305 Do you see any errors in the console log when you run it start the mirror with npm start dev command? Also are you running off the master branch or dev?
    We can try to start eliminating things out to narrow down what is causing the black screen for you.

    Can you try this config with only horoscope module:

    /* Magic Mirror Config Sample
     *
     * By Michael Teeuw http://michaelteeuw.nl
     * MIT Licensed.
     */
    
    var config = {
    	port: 8080,
    	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
    
    	language: 'en',
    	timeFormat: 24,
    	units: 'metric',
    
    	modules: [
    		{
    			module: 'MMM-horoscope',
    			position: 'bottom_right', // This can be any of the regions.
    			config: {
    				// See ‘Configuration options’ for additional options and more information.
    				sign: 'aries', // Zodiac sign
    				}
    		},
    	]
    
    };
    
    /*************** DO NOT EDIT THE LINE BELOW ***************/
    if (typeof module !== 'undefined') {module.exports = config;}
    

    Also can you please double check that MMM-horoscope and contents exist under ~/MagicMirror/modules directory? (I know I’m asking for obvious things, just trying to get some more info about your installation).

    1 Reply Last reply Reply Quote 0
    • P Offline
      pflnpi0305
      last edited by Jan 30, 2017, 8:05 AM

      thats the issue it doesnt exsist in there… how do i clone the git via ssh

      Y 1 Reply Last reply Jan 30, 2017, 8:37 AM Reply Quote 0
      • M Offline
        morozgrafix Moderator
        last edited by Jan 30, 2017, 8:25 AM

        @pflnpi0305 It will not work if you don’t have a copy of the module installed locally, black screen is there because MM is attempting to load JS files for the module from the directory that doesn’t exist. You need to run this in terminal while connected to your RasPi (directly or via SSH).

        cd ~/MagicMirror/modules
        git clone https://github.com/morozgrafix/MMM-horoscope.git
        

        After that you would need to restart MM node process in order it to pickup new node_helper for horoscope module.

        Thanks

        1 Reply Last reply Reply Quote 0
        • Y Offline
          yawns Moderator @pflnpi0305
          last edited by yawns Jan 30, 2017, 8:38 AM Jan 30, 2017, 8:37 AM

          @pflnpi0305 said in Creating a module to display daily horoscopes:

          thats the issue it doesnt exsist in there… how do i clone the git via ssh

          Mh, you are right. The readme on github doesn’t state how to do this. Maybe @morozgrafix could add this, even though the process is always the same.

          If you go to github, you see this:
          0_1485765365171_github.JPG

          1. click on “clone or download”
          2. copy the url or click on the icon next to it
          cd ~/MagicMirror/modules
          git clone https://github.com/morozgrafix/MMM-horoscope.git
          cd MMM-horoscope
          npm install
          

          After that you update your config.js file, restart your magic mirror and should be fine

          edit: oh, morozgrafix was faster

          M 1 Reply Last reply Jan 30, 2017, 8:50 AM Reply Quote 1
          • M Offline
            morozgrafix Moderator @yawns
            last edited by Jan 30, 2017, 8:50 AM

            @yawns Thanks! I just added a small bit related to installation steps to the README.

            1 Reply Last reply Reply Quote 1
            • P Offline
              pflnpi0305
              last edited by Jan 30, 2017, 9:10 AM

              lol thank you guys i should have thought of it but idk why it just slipped my mind i followed and i thought hmmm i need to close i think ahah…thanks i love this forum and all the help here.

              1 Reply Last reply Reply Quote 0
              • 1
              • 2
              • 3
              • 3 / 3
              3 / 3
              • First post
                21/26
                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