MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. bachoo786
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 92
    • Best 3
    • Controversial 1
    • Groups 0

    bachoo786

    @bachoo786

    2
    Reputation
    856
    Profile views
    92
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    bachoo786 Unfollow Follow

    Best posts made by bachoo786

    • RE: The latest Install Guide (MM w/ Google Assistant)

      @leej00 hello mate

      how did you configure the last part i.e.

      STEP7. EDIT GOOGLE ASSISTANT MODULE CONFIG
      Open the Magic Mirror configuration file with TextEditor and modify it with the contents of github
      

      there is soo much information on github that needs to be added on to the config.js, which part of it did you add to your config.js? can you please share it?

      I get the google icon on my mm but when I say “Ok Google” nothing happens"

      Thanks.

      posted in Troubleshooting
      B
      bachoo786
    • RE: Drrrrums, please! My first MagicMirror.

      @Fozi sorry to be a constant pain but what are your thoughts on using a led TV instead of the VA monitor?

      posted in Show your Mirror
      B
      bachoo786
    • RE: MMM-ModuleScheduler - Module Schedules and Notifications

      @ianperrin thanks for the reply.

      here is my config:

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       *
       * For more information how you can configurate this file
       * See https://github.com/MichMich/MagicMirror#configuration
       *
       */
      
      var config = {
      	address: "0.0.0.0", // Address to listen on, can be:
      	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      	                      // - another specific IPv4/6 to listen on a specific interface
      	                      // - "", "0.0.0.0", "::" to listen on any interface
      	                      // Default, when address config is left out, is "localhost"
      	port: 8181,
      	ipWhitelist: [], // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.168.1.5 :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      	language: "en",
      	timeFormat: 24,
      	units: "metric",
      //        customCss: 'css/custom.css',
      
      	modules: [
      //		{
      //			module: "alert",
      //		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      
      
          { 
             module: 'MMM-ModuleScheduler',
          },
      
      
      
              {
      		module: 'MMM-SystemStats',
      		position: 'bottom_bar', // This can be any of the regions.
      		// classes: 'small dimmed', // Add your own styling. OPTIONAL.
      		// header: 'System Stats', // Set the header text OPTIONAL
      		config: {
      			updateInterval: 10000, // every 10 seconds
      			align: 'right', // align labels
                              units: 'metric',
      			view: 'textAndIcon',
      		},
      	},
      
      
              {
                  module: "currentweather",
                  position: "top_right",
                  config: {
                      location: "London",
                      locationID: "xx",  //ID from http://bulk.openweathermap.org/sample/; unzip the gz file and find your city
                      appid: "xx"
                  }
              },
              {
                  module: "weatherforecast",
                  position: "top_right",
                  header: "Weather Forecast",
                  config: {
                      location: "xx",
                      locationID: "xx",  //ID from http://www.openweathermap.org/help/city_list.txt
                      appid: "xx"
                  }
              },
      
      
      
                  {
                      module: 'random_quotes',
                      position: 'lower_third',
                      config: {
                                      updateInterval: '8',
                                      fadeSpeed: '4'
                      }
                  },
      
                      {
                              module: 'MMM-homeassistant-sensors',
                              position: 'top_left',
                              config: {
                              host: "xx",
                              port: "xx",
                              https: true,
                              token: "xx",
                              prettyName: false,
      //                        updateInterval: "1000",
                              title: "Shower",
                              stripName: false,
                              values: [{
                                sensor: "sensor.shower",
                                icons: [{
                                "default": "shower"
                             }
                             ]
                               },{
                                sensor: "timer.water",
                                icons: [{
                                "default": "water-pump"
                             }
                             ]
                               }
                             ]
                          }
                      },
      
      {
                              module: 'MMM-homeassistant-sensors',
                              position: 'top_left',
                              config: {
                              host: "xx",
                              port: "xx",
                              https: true,
                              token: "xx",
                              prettyName: false,
      //                        updateInterval: "1000",
                              title: "Namaaz Time",
                              stripName: false,
                              values: [{
                                sensor: "sensor.fajr",
                                icons: [{
                                "default": "clock-outline"
                             }
                             ]
                               },{
                                sensor: "sensor.zohr",
                                icons: [{
                                "default": "clock-outline"
                             }
                             ]
                               },{
                                sensor: "sensor.maghrib",
                                icons: [{
                                "default": "clock-outline"
                            }
                            ]
                              }
                            ]
                          }
                      },
      
      
      
      
      
      
      
      
      {
              module:         'MMM-UKNationalRail',
              position:       'bottom_left',
              header:         'Wealdstone Departures',
              classes: 'scheduler',
              config: {
                  module_schedule: {from: '0 9 * * 3', to: '0 18 * * 3' },
                  stationCode:        'HRW',      // CRS code for station
                  app_id:             'xx',         // TransportAPI App ID
                  app_key:            'xx',         // TransportAPI App Key
                  updateInterval: 1 * 60 * 1000,
                  maxResults:         5,          //Optional - Maximum results to display.
                  showOrigin:         false,      //Optional - Show the origin of the train in the table
                              destination:            'EUS',
                              to_offset:              'PT02:00:00',
                              operator:               'LM'
              }
          },
      
      
      
      {
            module: 'MMM-TFL',
            position: 'bottom_left',
            config: {
              updateTime: 600000,
              modes: ['tube'],
              lines: 'metropolitan'
            }
          },
      
      
      
      
      
      //{
      //  module: "MMM-AssistantMk2",
      //  position: "bottom_right",
      //  config: {
      //   assistantConfig: {
      //     latitude: 51.508530,
      //     longitude: -0.076132, 
      //    },
      //    micConfig: { // put there configuration generated by auto-installer
      //      sampleRate    : 16000,      // audio sample rate
      //      threshold     : 0.1,        // silence threshold (rec only)
      //      thresholdStart: null,       // silence threshold to start recording, overrides threshold (rec only)
      //      thresholdEnd  : null,       // silence threshold to end recording, overrides threshold (rec only)
      //      verbose       : false,      // log info to the console. Use this when you want to check mic working or not.
      //      silence       : 0,
      //      recorder: "arecord",
      //      device: "plughw:AK5371",
      //    },
      //    responseConfig: {
      //      useHTML5: true,
      //      useScreenOutput: true,
      //      useAudioOutput: true,
      //      useChime: true,
      //      timer: 2000,
      //      myMagicWord: false,
      //      delay: 0.5
      ////      playProgram: "mpg321"
      //    },
      ////      recorder: "arecord",
      // //     device: "plughw:AK5371",
      ////    },
      //    recipes: [ "with-MMM-Hotword.js"],
      //  }
      
      //},
      
      
      
      
      
      
      
      // {
      //   module: "MMM-Hotword",
      //    position: "bottom_right",
      //    config: {
      //      useDisplay: false,
      //      chimeOnFinish: null,
      //      recipes: ["with-AMk2v3_smart-mirror.js"],
      //      mic: {
      //        recordProgram: "arecord",
      //        device: "plughw:AK5371",
      //      },
      //    },
      //  },
      
      
      
      
      
      
      
      
      
      
      
      {
          module: 'newsfeed',
          position: 'bottom_bar',
          config: {
              feeds: [
                  {
                      title: "BBC News UK",
                      url: "http://feeds.bbci.co.uk/news/england/rss.xml"
                  },
                  {
                      title: "Sky News",
                      url: "http://feeds.skynews.com/feeds/rss/world.xml"
                  }
              ],
              showSourceTitle: true,
              showPublishDate: true,
              ignoreOldItems: true,
              ignoreOlderThan: 50400000,
              updateInterval: 10000
      
              }
            },
      
      
      
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      posted in System
      B
      bachoo786

    Latest posts made by bachoo786

    • RE: MMM-HomeAssistant-Sensors (Development) - Show your HA Sensors on your Mirror

      @karlberg hey man thanks for the module. However I am getting “Error fetching stats” there is no error in HA.

      Can you please help? thnaks

      posted in Utilities
      B
      bachoo786
    • RE: Slim, Frameless Bathroom Mirror with a 27" Display

      hi @reaper81

      very nice mirror well done.

      quick question are you having any issues with wifi drop outs? I have my smart mirror infront of the tiles in my bathroom and have issues with wifi dropping out and I think it could be the tiles causing this wifi drop out.

      posted in Show your Mirror
      B
      bachoo786
    • RE: Frameless Bathroom Mirror - Part 2: Hardware and Build

      hi @Meidlmarkus very nice mirror well done.

      quick question, are you having issues with your wifi? is your raspberry pi dropping wifi? I have my smart mirror in the bathroom infront of the tiles and I am thinking it could be the tiles that is causing the wifi drop outs.

      posted in Show your Mirror
      B
      bachoo786
    • RE: Bathroom Magic Mirror

      @spitzlbergerj are you having any issues with WiFi dropping out in your bathroom? I am having issues with wifi drop outs as my mirror is infront of some tiles in the bathroom and I think the tiles might be interfering with it.

      posted in Show your Mirror
      B
      bachoo786
    • RE: Default weather module modification in custom.css

      @danielantos90 did you manage to change the font size of “feels like” ??

      posted in Custom CSS
      B
      bachoo786
    • RE: MMM-Strava

      @karsten13 Thanks for your answer but is it possible to show the strava stats of the people you are following on this particular module?

      posted in Health
      B
      bachoo786
    • RE: MMM-Strava

      Hi @ianperrin is it possible to show the strava stats of the people you are following?

      posted in Health
      B
      bachoo786
    • RE: My hallway 27" MagicMirror! (Sweden)

      Hi @Wuz0ink well done amazing job.

      Just a quick question how is your glass? is it better than a dielectric mirror? as in when the screen is turned off does it behave like a normal mirror?

      thanks.

      posted in Show your Mirror
      B
      bachoo786
    • RE: Greetings from Bulgaria

      @deananiev Hi well done for the amazing mirror you made.

      Is there like a video or pictures to show a how to guide?

      How did you block the other part of the mirror where the monitor is not covering the mirror?

      Also do you recommend to use a dielectric mirror for this project? or is a two way mirror better?

      many thanks.

      posted in Show your Mirror
      B
      bachoo786
    • RE: MagicMirror project for sister

      @blaukon thanks man

      posted in Show your Mirror
      B
      bachoo786