Skip to content

Tag: MagicMirror

Magic Mirror Birthday Updater

Year after year I have to update my birthday calendar on magic mirror. I use this solution:

https://forum.magicmirror.builders/topic/10126/getting-google-contacts-birthdays-into-calendar

But this year, some bugs made it impossible for me.

10:41:30 AM
Error
Exception: You have been creating or deleting too many calendars or calendar events in a short time. Please try again later.
Sync_Birth_Cal
@ 

I do nothing with this error, only ran the script again and again.

10:44:50 AM
Error
Exception: You have been creating or deleting too many calendars or calendar events in a short time. Please try again later.
Sync_Birth_Cal
@ 

This was more of a challenge. But one command added in last for loop fixed this problem.

  for (var t in eventToCopy){
    var newEvent = calendarDestination.createEvent(eventToCopy[t].getTitle(), eventToCopy[t].getStartTime(), eventToCopy[t].getEndTime());
  Utilities.sleep(500)
  }

Restart MM form HA

From time to time the photo module in MagicMirror hangs. I used to restart it manually by logging into the Raspberry and using the command “pm2 restart mm”. Now I want to make it so that it automatically restarts when I scan the NFC tag stuck to the back of the monitor.

So I divided big problem to smaller ones:
1. Restart MM,
2. Connection HA to MM machine,
3. Automation when HA apk scan tag,
4. Stick the NFC tag to the monitor xD

  1. Restart MM – Easy
pm2 restart mm

2. Connection HA to MM mashine

HA needs to let MM know to shut down for a while, so I guess the easiest way to do this is with mqtt broker.
I have used before Mosquitto, so I will use it.

MM site:
I created 2 files in my home directory: restartmm.sh and restartmm.py

restartmm.sh:

#!/usr/bin/env python

sleep 20
python /home/pi/restartmm.py &
restartmm.py basen on mqtt-screen-power project:

mqtt_host = "192.168.xxx.xxx"
mqtt_port = 1883
mqtt_topic = "/screen/restart"
mqtt_username = "xxxxxxxx"
mqtt_password = "xxxxxxxx"
power_on_command = "pm2 restart mm"
power_off_command = " "


import paho.mqtt.client as mqtt
import subprocess


def on_connect(client, userdata, flags, rc):
    # The callback for when the client receives a CONNACK response from the server.
    print("Connected with result code "+str(rc))

    # Subscribing in on_connect() means that if we lose the connection and
    # reconnect then subscriptions will be renewed.
    client.subscribe(mqtt_topic)


def on_message(client, userdata, msg):
    # The callback for when a PUBLISH message is received from the server.
    print(msg.topic+" "+str(msg.payload))
    if str(msg.payload) == "ON":
        subprocess.Popen(power_on_command,
                         shell=True, stdout=subprocess.PIPE)
    else:
        subprocess.Popen(power_off_command,
                         shell=True, stdout=subprocess.PIPE)


client = mqtt.Client()
client.on_connect = on_connect
client.on_message = on_message

client.username_pw_set(mqtt_username, mqtt_password)
client.connect(mqtt_host, mqtt_port, 60)

# Blocking call that processes network traffic, dispatches callbacks and
# handles reconnecting.
# Other loop*() functions are available that give a threaded interface and a
# manual interface.
client.loop_forever()

Both files chown is 755. Autostart with command “crontab -e” – “@reboot sh /home/XXXXX/restartmm.sh”

HA site:

HA configuration.yaml

switch:
  - platform: mqtt
    name: "MM restart"
    command_topic: "/screen/restart"

automations.yaml:

- alias: turn_off_restart_mm
  trigger:
    platform: state
    entity_id: switch.mm_restart
    to: 'on'
    for:
      seconds: 1
  action:
    service: switch.turn_off
    entity_id: switch.mm_restart

3. Automation when HA apk scan tag,

HA automations.yaml:

- alias: mm_tag
  initial_state: true
  trigger:
  - platform: tag
    tag_id: 7275ecff-27a1-4c4d-a7fd-69647998dbf8
  action:
  - service: switch.turn_on
    entity_id: switch.mm_restart

4. Stick the NFC tag to the monitor. Formality.

Magic Mirror on Raspberry Pi 3B+

 

 

To have such an information monitor, you need to have some unnecessary things, like a monitor and a raspberry, and buy a monitor holder and an hdmi-dvi adapter. I had nothing, so I bought parts. For the monitor I went to a computer store and asked about an old monitor, they gave me a 17″ for free.

 

 

 

Steps in few words:

  1. Install Raspberry Pi OS with desktop
  2. Install MagicMirror
  3. Install modules:
    • MMM-homeassistant-sensors – sensors from Home Assistant (temp, pressure, humidity, pm2.5, etc.)
    • MMM-Spotify – shows some music playing on Spotify
    • MMM-Wallpaper – based on reddit or bing wallpaper changer
    • MMM-GooglePhotos – shows your albums
    • MMM-HTMLBox – shows weather from meteo.pl
    • MMM-SystemStats – shows rpi stats
  4. Autostart MagicMirror https://github.com/MichMich/MagicMirror/wiki/Auto-Starting-MagicMirror

If you don’t have money for a big memory card or you use a recycled one, you have to watch the memory so that MagicMirror logs don’t eat all the memory. I solved this by installing logrorate.

https://github.com/keymetrics/pm2-logrotate

with this settings:

https://dannnb.medium.com/pm2-large-log-files-and-how-to-remove-them-4bffb30e99dc