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

Posts

Recent Best Controversial
  • RE: Error with Config.

    Fixed from a backup. I really need to learn how to code.

    posted in Troubleshooting
    J
    jtyle6
    Nov 23, 2016, 4:14 AM
  • Error with Config.

    I have been trying to work out what’s wrong with this dev build.

    /* 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: 'alert',
    		},
    		{
    			module: "updatenotification",
    			position: "top_bar"
    		},
    		{
    			module: 'clock',
    			position: 'top_left'
    		},
    		{
    			module: 'calendar',
    			header: 'US Holidays',
    			position: 'top_left',
    			config: {
    				calendars: [
    					{
    						symbol: 'calendar-check-o ',
    						url: '-------s'
    					}
    				]
    			}
    		},
    		{
    			module: 'MMM-Traffic',
        position: 'top_center',
        classes: 'dimmed medium', //optional, default is 'bright medium', only applies to commute info not route_name
        config: {
            api_key: '---',
            mode: 'driving',
            origin: '------',
            destination: '-----',
            arrival_time: '0800', //optional, but needs to be in 24 hour time if used.
            route_name: 'Home to Work',
            changeColor: true,
            showGreen: false,
            limitYellow: 5, //Greater than 5% of journey time due to traffic
            limitRed: 20, //Greater than 20% of journey time due to traffic
            traffic_model: 'pessimistic',
            interval: 120000 //2 minutes
    		},
    },
    		{
    			module: 'currentweather',
    			position: 'top_right',
    			config: {
    				location: 'New York',
    				locationID: '',  //ID from http://www.openweathermap.org
    				appid: '-----'
    			}
    		},
    		{
    			module: 'weatherforecast',
    			position: 'top_right',
    			header: 'Weather Forecast',
    			config: {
    	            location: 'New York',
    				locationID: '5128581',  //ID from http://www.openweathermap.org
    	            appid: '----'
    			}
    		},
    {
    module: 'MMM-SystemStats',
            position: 'bottom_left', // This can be any of the regions.
            classes: 'small dimmed', // Add your own styling. Optional.
            config: {
                updateInterval: 10000,
                animationSpeed: 0,
                //header: 'System Stats', // This is optional
            },
    	],
    
    };
    
    /*************** DO NOT EDIT THE LINE BELOW ***************/
    if (typeof module !== 'undefined') {module.exports = config;}
    
    
    posted in Troubleshooting
    J
    jtyle6
    Nov 22, 2016, 8:19 AM
  • RE: Halloween mirror ghouls anyone?

    @rvdgeer said in Halloween mirror ghouls anyone?:

    Note from admin: Please use Markdown on code snippets for easier reading!

    Markdown is not available from my Android smartphone. I don’t have the correct character available…
    And it’s a little too much to ask, to look-up the character on the web, so I can copy it…

    Markdown forms an Android phone
    
    posted in General Discussion
    J
    jtyle6
    Oct 5, 2016, 2:31 AM
  • World clock

    I haven’t found a World clock Module in the 3rd party on the wiki.

    I have some layout Ideas like Up, down, (Top / Bottom), or Left to Right.

    posted in Requests world clock module
    J
    jtyle6
    Sep 2, 2016, 9:19 AM
  • RE: Two way mirror suppliers - Australia!

    @slickric said in Two-way mirror suppliers - Australia!:

    Hi Guys! I’m absolutely sold on this idea and can’t wait to get into it. Is anyone on this site from Australia and if so, where do you source your glass/acrylic? I for the life of me haven’t been able to find anything that isn’t reflective film that you can buy from bunnings but is hardly up for this task :/

    I’m from Australia. But I haven’t been looking for suppliers for a mirror stuff.
    As masters going belly up as of late.. I haven’t at looked what they have.

    posted in Hardware
    J
    jtyle6
    Aug 30, 2016, 6:25 AM
  • RE: Calendar times in 24 hour format?

    @dinkybluebug245 said in Calendar times in 24 hour format?:

    @jtyle6 Mine is already showing timeformat as 24, which shows the clock in 24 hour format. But calendar items are still showing 12 hour format with AM/PM

    ah, whoops sorry miss read the Topic.

    posted in Feature Requests
    J
    jtyle6
    Aug 23, 2016, 10:34 AM
  • RE: Sound cards of different Pi models

    @strawberry-3.141 said in Sound cards of different Pi models:

    To optimise one of my modules, I would like to ask you guys to type cat /proc/asound/cards in your console and provide the output together with your raspberry pi module and what kind of microphone you’re using
    Raspberry Pi 3 / USB Microphone

    No modules running now, Jbl Go with Bluetooth on a pi3.

    0 [ALSA ]: bcm2835 - bcm2835 ALSA bcm2835 ALSA

    posted in Development
    J
    jtyle6
    Aug 23, 2016, 9:50 AM
  • RE: Calendar times in 24 hour format?

    Change the timeFormat: in the config.js file in config folder so looks like this.

    
    /* Magic Mirror Config
     *
     * By Michael Teeuw http://michaelteeuw.nl
     * MIT Licensed.
     */
    
    var config = {
            port: 8080,
    
            language: 'en',
            timeFormat: 12,
            units: 'metric',
    

    Note: I Have only copied top half of mine.

    posted in Feature Requests
    J
    jtyle6
    Aug 23, 2016, 9:17 AM
  • RE: my raspberry pi 3 has a os installed but

    @bubbax666 All of the raspberry pi’s don’t have an RTC (Real Time Clock) on them.

    posted in Tutorials
    J
    jtyle6
    Aug 19, 2016, 6:20 AM
  • RE: Another Kickstarter is trying to launch Magic Mirror

    @Cato Oh yes. look at https://www.reddit.com/r/talesfromtechsupport/

    posted in General Discussion
    J
    jtyle6
    Aug 14, 2016, 5:20 AM
  • 1
  • 2
  • 1 / 2
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