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

hawkeye

@hawkeye

1
Reputation
367
Profile views
18
Posts
1
Followers
0
Following
Joined May 29, 2018, 12:28 AM
Last Online Jun 21, 2020, 11:33 PM

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
    Jun 1, 2020, 6:16 AM

Latest posts made by hawkeye

  • RE: Remote control

    its solved

    posted in Utilities
    H
    hawkeye
    Jun 8, 2020, 11:18 PM
  • 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
    Jun 8, 2020, 3:37 AM
  • 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
    Jun 8, 2020, 2:24 AM
  • 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
    Jun 4, 2020, 1:58 AM
  • 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
    Jun 3, 2020, 12:38 PM
  • 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
    Jun 3, 2020, 12:12 PM
  • 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
    Jun 3, 2020, 11:52 AM
  • RE: Remote control

    @sdetweil yeah I’m no programmer

    i need an idiots guide to things

    posted in Utilities
    H
    hawkeye
    Jun 3, 2020, 3:58 AM
  • 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
    Jun 3, 2020, 3:50 AM
  • 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
    Jun 1, 2020, 10:22 AM
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