A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Subcategories

  • Any suggestions or wishes for the forum?

    105 Topics
    727 Posts
    J
    @sdetweil Thanks, I made the changes ad it works perfectly. Thank you for your prompt response.
  • Touch foil question

    9
    0 Votes
    9 Posts
    5k Views
    M
    @trich1 yes side of the frame works. just needs to be possible to move the finger into the Infrared light grid it creates ;) However when you really want a photobooth with basically only the feature make a photo a small gesture sensor or a distance sensor (depending on how you want to trigger) would be a lot cheaper since touch foils are damn expensive in that size (never used one with a mirror but some producers state that some touch foils work with their mirror). And even a IR Frame will probably cost at least around 100$ I guess. Although I am no big fan of the touch + mirror combo anyways because you have fingerprints all over the mirror ^^ which you do not have with gesture control (maybe voice control would be cool aswell :) ) Well but back to your question I never used a IR Frame so far but in general mapping should be quite possible. But you need to check what options are out there for your distro. It appears to be pretty common that you need to map for example with multiple monitors since linux often sees them as one so mapping needs to be done here aswell. Just search for touchscreen calibration and you should find explanations
  • Newb User with multiple Questions

    5
    0 Votes
    5 Posts
    2k Views
    T
    Ok, got it. Thank you. Edit: I was just looking at the Sonos website and thei latest speaker (Sonos One) has Alexa built into it. Now I think that’s a better solution and I would want to see if i can retireve the current song ad metadata through the Sonos.
  • Magicmirror - Mycroft

    3
    0 Votes
    3 Posts
    2k Views
    D
    @ezeraj Oh yeah, here’s another post you may like as well. https://forum.magicmirror.builders/topic/6615/kalliope-assistant-mm/57 I have a fork of the MMM-kalliope module that I have modified to work with Mycroft as well to display the user and Mycroft utterances on the Magic Mirror as well. @sispheor did some great work that I modified for use with Mycroft. You can find it here.
  • dummy

    2
    0 Votes
    2 Posts
    843 Views
    Mykle1M
    @geo Is there a question in there somewhere? I will assume that you are at least looking for a tutorial. https://forum.magicmirror.builders/topic/236/complete-setup-tutorial This tutorial is for the software side of things. You can search this forum for ideas on how to construct a frame, or use an existing one. Good luck to you.
  • free voice recognition like google assistant and alexa

    Moved
    2
    0 Votes
    2 Posts
    1k Views
    ?
    @nikhil That limitation is not for assistant api but for cloud speech api. ( I had used that api in my previous module)
  • How to invoke sendNotification from a outside shell script

    3
    0 Votes
    3 Posts
    1k Views
    ?
    MMM-NotificationTrigger has HTTP endpoint to receive message. So if your external app can touch the endpoint, It can convert it to MagicMirror notification. Example of using IFTTT. https://github.com/eouia/MMM-NotificationTrigger#usewebhook
  • Getting solar ducks in a row

    6
    0 Votes
    6 Posts
    2k Views
    TuicemenT
    @sdetweil Thanks for the added info. I’ll add that to my list of things to install.
  • Screen capture on a Raspberry Pi

    tips and tricks
    5
    3 Votes
    5 Posts
    5k Views
    delightedCrowD
    Really helpful, thanks!
  • Writing my own OS

    11
    0 Votes
    11 Posts
    10k Views
    H
    @ruben And if you delve into Javascript development you should consider to use TypeScript. It allows type-safe development and debugging while you develop. It translates into regular Javascript. Actually, AngularJS is developed using TypeScript. Pretty awesome! Just my 2 cents. Regards, HerrB92
  • Looking for Mirror creaters experience

    8
    0 Votes
    8 Posts
    7k Views
    S
    I know this is an old topic, but how do you like the mirror from XL-Glas? The image coming through from the monitor looks a bit dark, or is it bright enough?
  • How to develop modules

    5
    0 Votes
    5 Posts
    14k Views
    Mykle1M
    I wrote this 8 months ago and it may help someone. It’s meant to be used as a learning tool for beginner module creators. https://github.com/mykle1/MMM-UFO
  • Docker Compose 2

    Unsolved
    1
    0 Votes
    1 Posts
    1k Views
    G
    Docker Compose version: ‘2’ services: fhem: restart: always expose: - “8083” - “7072” - “8383” ports: - “8383:8383” - “8083:8083” - “7072:7072” build: fhem privileged: true devices: - “/dev/ttyUSB0:/dev/ttyUSB0” volumes: - ./fhem/core/:/opt/fhem/ - /dev/serial/by-id:/dev/serial/by-id networks: - fhem-network depends_on: - "mysql" - "mqtt" - "smartvisu" homebridge: restart: always image: oznu/homebridge volumes: - ./homebridge/config.json:/homebridge/config.json - ./homebridge/package.json:/homebridge/package.json environment: - TZ=Europe/Berlin - PGID=1000 - PUID=1000 network_mode: host depends_on: - "fhem" habridge: restart: always build: habridge network_mode: host mysql: restart: always expose: - "3306" - "33060" ports: - "3306:3306" - "33060:33060" image: mysql/mysql-server:5.7 volumes: - ./mysql/init.sql:/docker-entrypoint-initdb.d/fhem-init.sql - ./mysql/data:/var/lib/mysql environment: - MYSQL_RANDOM_ROOT_PASSWORD=yes networks: - fhem-network mqtt: restart: always expose: - "1883" - "9001" ports: - "1883:1883" - "9001:9001" image: toke/mosquitto networks: - fhem-network volumes: - ./mqtt/config/:/mqtt/config/ - ./mqtt/log/:/mqtt/log/ - ./mqtt/data/:/mqtt/data/ nodered: restart: always expose: - "1880" ports: - "1880:1880" image: nodered/node-red-docker:0.18.4 volumes: - ./nodered/data/:/root/data/ networks: - fhem-network depends_on: - "mqtt" smartvisu: restart: always image: foxi352/smartvisu volumes: - ./fhem//core/www/smartvisu2.8/:/var/www/html ports: - "8082:81" networks: - fhem-network portainer: restart: always image: portainer/portainer volumes: - ./portainer/:/data - /var/run/docker.sock:/var/run/docker.sock ports: - "9000:9000" magic_mirror: restart: always image: bastilimbach/docker-magicmirror expose: - "8080" ports: - "8080:8080" volumes: - ./magic_mirror/config:/opt/magic_mirror/config \ - ./magic_mirror/modules:/opt/magic_mirror/modules \ - ./magic_mirror/css:/opt/magic_mirror/css/custom.css \ networks: - fhem-network alexa: restart: always expose: - "3000" ports: - "3000:3000" image: bananarama/x86-alexa-fhem:latest volumes: - ./alexa/config:/config networks: - fhem-network depends_on: - "fhem" networks: fhem-network: driver: bridge :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Config: var config = { address: “”, port: 8080, ipWhitelist: [], language: “en”, timeFormat: 24, units: “metric”, modules: [ { module: "clock", position: "top_left" } ] }; Fehlermeldung: Starting MagicMirror: v2.3.1 Loading config … WARNING! Could not find config file. Please create one. Starting with default configuration. ading module helpers … Initializing new module helper … Module helper loaded: updatenotification No helper found for module: helloworld. l module helpers loaded. Starting server on port 8080 … Server started … Connecting socket for: updatenotification Sockets connected & modules started … Ready to go! Please point your browser to: http://localhost:8080 Kann jemand mir helfen ?
  • How to keep a history of values on Mirror

    machinelearning history
    6
    0 Votes
    6 Posts
    2k Views
    O
    Hm, I was hoping there would be a smarter way. Thanks for your ideas everyone, I guess I’m going to write some code that gets the state of the mirror and parses it for the relevant information. I will need to handle the various modules I’m interested in and potentially make it so that it’s easy to onboard new modules into it. It could either be an actual module on the mirror (working on writing my own modules now) or a totally separate process that fetches the mirror and parses that. Thank you everyone, I’ll work on it for a while and come back here if I ever get anything done :)
  • Volume Control

    3
    0 Votes
    3 Posts
    2k Views
    T
    hello paul.calladine I would be interested in this module could you make it available to me and also show a picture of how you have connected? Many Thanks
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    124 Views
  • how to run magic mirror on raspberry pi desktop at virtual box

    1
    0 Votes
    1 Posts
    2k Views
    N
    I am trying to test the magic mirror and some modules on raspberry pi desktop installed on virtual box. But it is not running at all, can someone please guide me to install the magic mirror and at least some basic modules on the same for just test purpose. If it will work then it will be easy for me to develop some modules for me on my laptop and test easily. I have followed this process to install raspberry pi stretch desktop on virtual box. https://www.youtube.com/watch?v=EE--H1wYKGU
  • "HIDE" and/or "SHOW" modules automatically...

    3
    0 Votes
    3 Posts
    4k Views
    justjim1220J
    @axled Thanks for the reply… I’m using the Module Scheduler at the moment. Works Great!!! :smiling_face_with_sunglasses: :smiling_face_with_sunglasses: :smiling_face_with_sunglasses:
  • Emoji

    3
    0 Votes
    3 Posts
    2k Views
    B
    It doesn’t work. It show me only B/W Emoji. { module: "calendar", header: "Kalender", position: "top_right", config: { maximumEntries: 13, maxTitleLength: 40, fade: false, timeformat: "absolute", displayRepeatingCountTitle: true, getRelative: 0, dateFormat: "ddd[,] h:mm A", fullDayEventDateFormat: "ddd", displaySymbol: false, colored: true, urgency: 0, calendars: [ { symbol: "calendar-check-o ", url: "https://calendar.google.com/calendar/ical/xxxxxxxx.cal%40googlemail.com/public/basic.ics" }, { url: "https://calendar.google.com/calendar/xxxxxxxxxxxxxxxxxxxxs%40group.calendar.google.com/public/basic.ics" } ], } },
  • When to turn mirror on and off?

    6
    1 Votes
    6 Posts
    3k Views
    Mykle1M
    @solelo Good luck, my friend. You will likely have some delay if you’re using a Pi. If you’re using something more robust than a Pi you will certainly have a better, more enjoyable experience. :-)
  • Finally plunging to build a MagicMirror

    1
    0 Votes
    1 Posts
    660 Views
    S
    I’ve been monitoring these forums for a while as well as had my RaspberryPi 3 B+ since they came out and well now I think I’m ready to take the plunge this weekend. Do you guys have any advice for me on how to go about it? What steps I should do first? Anything will be appreciated.