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

Alloc

@Alloc

1
Reputation
68
Profile views
9
Posts
0
Followers
0
Following
Joined Dec 26, 2019, 6:00 PM
Last Online Nov 10, 2022, 9:48 AM
Age 39
Location Denmark

Alloc Unfollow Follow

Best posts made by Alloc

  • RE: Remote Control doesn't work for me, Please help!

    Please use the </> when posting code

    {
        module: 'MMM-Remote-Control'
        // uncomment the following line to show the URL of the remote control on the mirror
        // , position: 'bottom_left'
        // you can hide this module afterwards from the remote control itself
        config: {
            customCommand: {},  // Optional, See "Using Custom Commands" below
            customMenu: "custom_menu.json", // Optional, See "Custom Menu Items" below
            showModuleApiMenu: true, // Optional, Enable the Module Controls menu
            apiKey: "",         // Optional, See API/README.md for details
        }
    },
    

    My guess is that your problem is within point 3.

    (3) For security reasons, the MagicMirror (and therefore the Remote Control) is not reachable externally. To change this, configure address, and ipWhitelist in your config.js (see these lines in the sample config). For
    example change address to 0.0.0.0 and add two allowed devices with IP-Adresses 192.168.0.42 and 192.168.0.50:

    address : ‘0.0.0.0’,
    port: 8080,
    ipWhitelist: [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”, “::ffff:192.168.0.42”, “::ffff:192.168.0.50”],"

    You can also add multiple devices in an IP range (e.g. all devices with 192.168.0.X):

    ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.0.1/120", "192.168.0.1/24"],
    
    posted in Troubleshooting
    A
    Alloc
    Jan 15, 2020, 11:17 AM

Latest posts made by Alloc

  • RE: New Weather module

    @djboob66 You spelled True wrong in your config

    posted in Requests
    A
    Alloc
    May 11, 2021, 7:05 AM
  • RE: *NEW LIST 29.06.2021* Two way community order for mirror glass for all european countries - Open until at least 10 people have entered

    Damn, im just a tad to late… Well looks like im going to wait till next round :)

    BTW, i got a 24" monitor that i want a mirror for - But im not sure about the size, do you have a small guide for what i should measure so i can order the correct size?

    Edit:

    Looks like im just a tired dummy, i didnt see that its just in M insted of cm… :P

    posted in Hardware
    A
    Alloc
    Apr 27, 2021, 7:02 PM
  • RE: MMM-Openmapweather & MMM-NOAA3 image error

    Did you add your own icons in the CSS file?

    That icon is where it will show the current weather icon normally

    posted in Troubleshooting
    A
    Alloc
    Jul 21, 2020, 10:26 AM
  • RE: Remote Control doesn't work for me, Please help!

    @justlearning I would edit that out, because it shows all your API secrets.

    Fx. Spotify

    posted in Troubleshooting
    A
    Alloc
    Jan 17, 2020, 1:05 PM
  • RE: Remote Control doesn't work for me, Please help!

    Please use the </> when posting code

    {
        module: 'MMM-Remote-Control'
        // uncomment the following line to show the URL of the remote control on the mirror
        // , position: 'bottom_left'
        // you can hide this module afterwards from the remote control itself
        config: {
            customCommand: {},  // Optional, See "Using Custom Commands" below
            customMenu: "custom_menu.json", // Optional, See "Custom Menu Items" below
            showModuleApiMenu: true, // Optional, Enable the Module Controls menu
            apiKey: "",         // Optional, See API/README.md for details
        }
    },
    

    My guess is that your problem is within point 3.

    (3) For security reasons, the MagicMirror (and therefore the Remote Control) is not reachable externally. To change this, configure address, and ipWhitelist in your config.js (see these lines in the sample config). For
    example change address to 0.0.0.0 and add two allowed devices with IP-Adresses 192.168.0.42 and 192.168.0.50:

    address : ‘0.0.0.0’,
    port: 8080,
    ipWhitelist: [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”, “::ffff:192.168.0.42”, “::ffff:192.168.0.50”],"

    You can also add multiple devices in an IP range (e.g. all devices with 192.168.0.X):

    ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.0.1/120", "192.168.0.1/24"],
    
    posted in Troubleshooting
    A
    Alloc
    Jan 15, 2020, 11:17 AM
  • RE: Cannot hide SSID and Password in MMM-WiFiPassword

    @sdetweil Ahh okay, i was just looking at the github, so there its wrong.

    https://github.com/TeraTech/MMM-WiFiPassword

    How to use this module
    As with other MM modules, add this array to the config/config.js file

    modules:[
      {
        module: 'MMM-WiFiPassword',
        position: "top_left",
          config: {
            //See 'Configuration options' for more information.
            network: "my_network", 
            password: "my_pass",
          }
      },
    ]
    
    posted in Troubleshooting
    A
    Alloc
    Jan 14, 2020, 2:55 PM
  • RE: Cannot hide SSID and Password in MMM-WiFiPassword

    Dont you need a , after showPassword: false?

    posted in Troubleshooting
    A
    Alloc
    Jan 14, 2020, 2:51 PM
  • RE: Drrrrums, please! My first MagicMirror.

    @Fozi Thanks.

    I will try again tonight and see if i can get it authorized. I never could get past that part of the setup

    posted in Show your Mirror
    A
    Alloc
    Dec 27, 2019, 9:18 AM
  • RE: Drrrrums, please! My first MagicMirror.

    Looks great.

    May i ask how you got MMM-withings to work? When i go to their site at step 4, i just get this error :(

    Client id not authorized

    https://github.com/kodymallory/MMM-withings

    posted in Show your Mirror
    A
    Alloc
    Dec 26, 2019, 6:12 PM
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