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

    Posts

    Recent Best Controversial
    • RE: Doorbird IP camera integration

      @MilkShake
      Could you post your conf ?

      posted in General Discussion
      M
      mmourcia
    • RE: Doorbird IP camera integration

      @MilkShake
      Then you should probably do that outside MM.
      Maybe with a http listener like https://github.com/msoap/shell2http/blob/master/README.md ?

      posted in General Discussion
      M
      mmourcia
    • RE: Doorbird IP camera integration

      @MilkShake
      Yes for schedule

      For the doc I don’t really remember anymore. I had to deduce it from this page and from the native docs of modules

      posted in General Discussion
      M
      mmourcia
    • RE: Doorbird IP camera integration

      Dear @MilkShake

      I see that you’ve configured something in visite http menu.
      But you have to configure the planning too.

      Go to admin-> calendrier sonnette and clic on the left on appel http.
      Then you’ll be able to define a planning.

      I hope it can help !
      Bye

      posted in General Discussion
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @MilkShake
      Maybe you could use MODULE_ACTION of remote module.

      => http(s)://ip:8080/remote?action=MODULE_DATA

      That will return all informations about your modules including their names.

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @lodam
      Tant mieux si cela vous aide !

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @MilkShake
      Yes, I lt you find answers by yourself ;)

      Try some different conf and i’m sure you’ll find the one that you need !
      Regards

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @MilkShake

      Why is the display_power involved in this?

      It’s not. This is just my conf and i did not sanitize it

      When you write “Conf on doorbird in http visit”, is that the HTPPS(S) calls part of the Doorbird config?

      Yes it is

      I take it that I need a carillon.wav file in the MMM-Sounds/sounds directory or change the wav part to one of the default wav files like buzz.wav?

      Yes you’re right

      The call “http://IP_MM:8080/remote?action=SHOW&module=module_XX_MMM-iFrame-Ping” is that correct? Does it need the XX part?

      It is in fact the index of the module in your conf. You must guess it

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      Hello @MilkShake ,

      The only thing I kept as interaction is playing a sound file when someone knock at the door.

      Conf on doorbird in http visit

      http://IP_MM:8080/remote?action=NOTIFICATION&notification=PLAY_SOUND&payload=%7B%22sound%22%3A%22carillon.wav%22%2C%22delay%22%3A100%7D
      

      Conf of MM

      Remote module

      		{
      			module: 'MMM-Remote-Control',
      			config: {
      					customCommand: {
      						monitorOnCommand: '/usr/bin/vcgencmd display_power 1',
      						monitorOffCommand: '/usr/bin/vcgencmd display_power 0',
      						monitorStatusCommand: '[ $(vcgencmd display_power) = "display_power=0" ] && echo "false" || echo "true"'
      					}
      		        }
      		},
      

      Sound module

      		{
      			module: 'MMM-Sounds',
      			config: {
      				startupSound:   'wobble.wav',
      				quietTimeStart: '23:00',      // 11pm
      				quietTimeEnd:   '07:00',       // 7am
      				debug: true
      			}
      		},
      

      I’ve plugged an external usb speaker and when someone press the doorbird button, it plays sound.

      I did some test before to show the face of the person ringing.
      You could try to enable Frame module and ask doorbird to visit this address

      http://IP_MM:8080/remote?action=SHOW&module=module_XX_MMM-iFrame-Ping
      
      		{
      			module: 'MMM-iFrame-Ping',
      			disabled: true,
      			position: 'middle_center',	// This can be any of the regions.
      			config: {
      				// See 'Configuration options' for more information.
      				url: "http://IP_DOORBIRD/bha-api/image.cgi?&http-user=user&http-password=password",
      				height:"480px%", 
      				width:"35%",
      				autoRefresh: true, //set to false for video
      				updateInterval: 0.5, //in min. Only if autoRefresh: true
      				displayLastUpdate: true,
      				//width: "100%", // Optional. Default: 100%
      				//height: "800px", //Optional. Default: 100px
      				scrolling: "no",
      				logDebug: true
      				}
      		},
      

      Finaly, to open the door, i’m using a wonderful french project, Jeedom (https://jeedom.com). It handles all my home domotics.

      Let me know if you need some other informations
      Regards

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @pplotton
      Bonjour,

      Ce que je fais au final est de déclencher un son lorsque quelqu’un sonne.
      Dans la conf d’admin du doorbird, dans “visite http(s)” je mets un truc du genre :

      http://mm.local:port/remote?action=NOTIFICATION&notification=PLAY_SOUND&payload=%7B%22sound%22%3A%22carillon.wav%22%2C%22delay%22%3A100%7D
      

      Et coté miroir j’ai simplement activé le module remote.

      Au départ j’affichais aussi une frame avec la vidéo du portier mais ce n’était pas très au point donc j’ai arrêté.

      			config: {
      				// See 'Configuration options' for more information.
      				url: "http://ip_doorbird/bha-api/image.cgi?&http-user=mon_user&http-password=mon_pass",
      				height:"480px%", 
      				width:"35%",
      				autoRefresh: true, 
      				updateInterval: 0.5, //in min. Only if autoRefresh: true
      				displayLastUpdate: true,
      				//width: "100%", // Optional. Default: 100%
      				//height: "800px", //Optional. Default: 100px
      				scrolling: "no",
      				logDebug: true
      				}
      

      J’espère que ca pourra t’aider

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @solid bonjour,
      Du bête bois de Leroy Merlin;)
      Il fait 9cm de largeur pour 1,5 cm d’épaisseur.
      Vu que j’allais le peindre, j’ai pris un truc tout simple.

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @greda Bonjour,
      les références sont notées dans le premier post.

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @solid Bonjour, merci à toi.
      Avec bords “bruts” donc non polis.

      Bonne soirée

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @artilari said in Magic mirror first try (France, ~Lille):

      pilkington

      Hello,
      I can’t tell you.
      You can ask them if you want.
      I’ve bought one with https://www.brigla-shop.de
      Let us know

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      Bonjour @bolish !

      Si la luminosité est forte alors il faut que je me rapproche du miroir pour bien y voir.
      Ca reste lisible mais c’est forcément moins bon que dans la pénombre.

      Le mien est dans l’entrée de la maison.
      Avec l’éclairage classique à ampoule, aucun problème, avec la luminosité classique, pas de problème.
      Lorsque vraiment il y a une éclaircie alors il faut s’approcher un peu plus.
      En même temps j’habite dans ch’nord, question lumière naturelle, je suis assez tranquille ;)

      Si tu es de passage, tu peux venir constater par toi même !

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      bonjour @leroyhab

      Si si l’écran a des HP (pourris) mais comme je voulais du son en surface du cadre, je n’avais pas envie de démonter et rallonger les HP jusqu’au bord.
      J’ai choisi une solution plus pratique à mettre en oeuvre.

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @leroyhab said in Magic mirror first try (France, ~Lille):

      Mirropane

      Bonjour @leroyhab ,
      ce miroir est une référence que l’on voit un peu partout et notamment dans ce forum.
      Le site allemand sur lequel j’ai passé commande peut paraître un peu dur d’accès (enfin avec mes très vieilles notions d’allemand …) mais les gars sont sérieux. Le miroir est arrivé en 15 jours calendaires, très bien emballé.

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @cowboysdude said in Magic mirror first try (France, ~Lille):

      WOW very nicely done :)

      Thank you too !

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @bhepler said in Magic mirror first try (France, ~Lille):

      Very nice. I like the way you positioned & mounted the smaller monitor inside a larger frame.

      Thank you !

      posted in Show your Mirror
      M
      mmourcia
    • RE: Magic mirror first try (France, ~Lille)

      @chris hello,
      Thanks for your compliment

      I’m using the FR version.
      Have a look at here https://github.com/tttooommm56/MMM-RainForecast-FR

      {
      	module: 'MMM-RainForecast-FR',
      	position: 'bottom_right',
      	header: 'Prevision pluie',
      	config: {
      		codeInsee: 'xxxxx',
      		showText: true,
      		showGraph: true
      		}
      },
      
      posted in Show your Mirror
      M
      mmourcia
    • 1
    • 2
    • 1 / 2