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

    Posts

    Recent Best Controversial
    • RE: Remote control

      its solved

      posted in Utilities
      H
      hawkeye
    • RE: module: remote control issue
      {
      	module: 'MMM-Remote-Control',
      	//position: 'bottom_left',
      	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
      	}
      },
      

      try pasting that in your config.js works for me

      posted in Troubleshooting
      H
      hawkeye
    • MMM-awesome-alexa

      My stupid thing is talking in Chinese or Japanese and i cant see where to change it to English

      all my settings are set to English in the pi and and MM config

      https://www.hellotech.com/guide/for/how-to-change-alexa-voice

      even did what that says still Japanese haha

      posted in Troubleshooting
      H
      hawkeye
    • RE: MMM-iFrame-Ping

      hi i have installed this module and have it working to a point i just cant get youtube to work on it is there some thing im missing ?

      if i out my own website in as the url that loads google dosent though

      posted in Utilities
      H
      hawkeye
    • RE: Remote control

      I deleted every thing in the socketclient.js file and replaced with the following now the remote works like a charm

      var MMSocket = function(moduleName) {
      var self = this;

      if (typeof moduleName !== "string") {
      	throw new Error("Please set the module name for the MMSocket.");
      }
      
      self.moduleName = moduleName;
      
      // Private Methods
      self.socket = io("/" + self.moduleName);
      var notificationCallback = function() {};
      
      var onevent = self.socket.onevent;
      self.socket.onevent = function(packet) {
      	var args = packet.data || [];
      	onevent.call(this, packet);    // original call
      	packet.data = ["*"].concat(args);
      	onevent.call(this, packet);      // additional call to catch-all
      };
      
      // register catch all.
      self.socket.on("*", function(notification, payload) {
      	if (notification !== "*") {
      		notificationCallback(notification, payload);
      	}
      });
      
      // Public Methods
      this.setNotificationCallback = function(callback) {
      	notificationCallback = callback;
      };
      
      this.sendNotification = function(notification, payload) {
      	if (typeof payload === "undefined") {
      		payload = {};
      	}
      	self.socket.emit(notification, payload);
      };
      

      };

      posted in Utilities
      H
      hawkeye
    • RE: Remote control

      @sdetweil see your totally awesome that’s fixed now wahoo

      with your help im sure you could help me get this working awsome

      posted in Utilities
      H
      hawkeye
    • RE: Remote control

      @sdetweil you have been a grate help so far and yes i know i am annoying but i cant find what i am to do

      posted in Utilities
      H
      hawkeye
    • RE: Remote control

      @sdetweil yeah I’m no programmer

      i need an idiots guide to things

      posted in Utilities
      H
      hawkeye
    • RE: Remote control

      @sdetweil said in Remote control:

      {
      module: ‘MMM-Remote-Control’,
      position: ‘bottom_left’,
      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
      }
      },

      You rock that fixed that part now i just need to make it show modules so i can turn them off

      posted in Utilities
      H
      hawkeye
    • RE: Remote control

      i tried that still no joy

      what i want to do is to be able to add and remove modules from my phone and having no luck

      posted in Utilities
      H
      hawkeye
    • RE: Introduce yourself!

      I’m Darren a 2 times stroke survivor looking to make a mirror so i can say see im not totaly useless any more i can do some things

      not having much luck haha so guess i am usless!

      posted in General Discussion
      H
      hawkeye
    • Remote control

      When i add this to my config my mirror stops working soon as i delete it starts again

      if i put my ip addy in for the pi with ports 8080 into my phone i can see the mirror but no remote control options where am i going wrong please

      {
      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
      }
      },
      

      Only thing i have working with my pi is kodi and thats on a spare i am a total NOOB and in need of a lot of help

      posted in Utilities
      H
      hawkeye
    • RE: Where are you from?

      I am from Stockton on tees UK

      Now living in GEELONG Victoria Australia

      posted in General Discussion
      H
      hawkeye
    • Week A and B roating request

      Hi i am looking for a calander that i can set 2 week school time tables to switch every monday.

      Is such a thing possible ???

      posted in Requests
      H
      hawkeye
    • RE: Hi i am new

      @madscientist yes its the part in google itself thats driving me nuts i have registerd the device.

      Basic are set up i have aussie holidays and weather for my town along with aussie herrald sun news feeds its just all the other add ons i cant get to work

      posted in General Discussion
      H
      hawkeye
    • RE: Hi i am new

      @waynerigley thanks hope you are doing well

      I hope i can find the answers im looking for i learn by seeing how its done words just confuse me i do like videos to watch if you know of any that woukd be sweet

      posted in General Discussion
      H
      hawkeye
    • Hi i am new

      Hi all my name is Darren and recovering from 2 strokes and thought this would be a cool project to build for my kids and help with my cognitive.

      And i cant seem to get any module to work.

      Im having a real hard problem getting google assistant to work cant seem to find any viedos on how to set stuff up

      posted in General Discussion
      H
      hawkeye
    • 1 / 1