MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. hawkeye
    H
    • Profile
    • Following 0
    • Followers 1
    • Topics 5
    • Posts 18
    • Best 1
    • Controversial 0
    • Groups 0

    hawkeye

    @hawkeye

    1
    Reputation
    366
    Profile views
    18
    Posts
    1
    Followers
    0
    Following
    Joined Last Online

    hawkeye Unfollow Follow

    Best posts made by 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

    Latest posts made by hawkeye

    • 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