Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. ulster
    MagicMirror² v2.15.0 is available! For more information about this release, check out this topic.
    U
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 9
    • Best 1
    • Groups 0

    ulster

    @ulster

    1
    Reputation
    1
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ulster Follow

    Best posts made by ulster

    • RE: MagicMirror² v2.15.0 is available don't work.

      @sdetweil !

      thank you
      Captura de ecrã 2021-04-01, às 23.11.52.png

      posted in Troubleshooting
      U
      ulster

    Latest posts made by ulster

    • RE: MagicMirror² v2.15.0 is available don't work.

      @sdetweil !

      thank you
      Captura de ecrã 2021-04-01, às 23.11.52.png

      posted in Troubleshooting
      U
      ulster
    • RE: MagicMirror² v2.15.0 is available don't work.

      @sdetweil said in MagicMirror² v2.15.0 is available don't work.:

      npm run rebuild

      now the problem seems to be in mmm assistant2display

      01.04.2021 21:21.49.886] [ERROR] WARNING! Could not load config file. Starting with default configuration. Error found: Error: The module ‘/home/pi/MagicMirror/modules/MMM-Assistant2Display/node_modules/epoll/build/Release/epoll.node’
      was compiled against a different Node.js version using
      NODE_MODULE_VERSION 76. This version of Node.js requires
      NODE_MODULE_VERSION 85. Please try re-compiling or re-installing
      the module (for instance, using npm rebuild or npm install).

      posted in Troubleshooting
      U
      ulster
    • RE: MagicMirror² v2.15.0 is available don't work.

      @sdetweil said in MagicMirror² v2.15.0 is available don't work.:

      ~/MagicMirror/node_modules/.bin/electron-rebuild

      sorry, still not work.

      01.04.2021 20:54.05.668] [ERROR] WARNING! Could not load config file. Starting with default configuration. Error found: Error: Cannot find module ‘/home/pi/MagicMirror/modules/MMM-GoogleAssistant/node_modules/@bugsounet/snowboy/lib/node/binding/Release/electron-v11.3-linux-arm/snowboy.node’
      Require stack:

      • /home/pi/MagicMirror/modules/MMM-GoogleAssistant/node_modules/@bugsounet/snowboy/lib/node/index.js
      • /home/pi/MagicMirror/modules/MMM-GoogleAssistant/node_modules/@bugsounet/snowboy/index.js
      • /home/pi/MagicMirror/modules/MMM-GoogleAssistant/node_helper.js
      • /home/pi/MagicMirror/js/app.js
      • /home/pi/MagicMirror/js/electron.js
      • /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
      posted in Troubleshooting
      U
      ulster
    • RE: MagicMirror² v2.15.0 is available don't work.

      @unfriendlydevice

      at Object. (/home/pi/MagicMirror/modules/MMM-GoogleAssistant/node_modules/@bugsounet/snowboy/lib/node/index.js:8:29)
      at Module._compile (internal/modules/cjs/loader.js:1152:30)
      at Object.Module._extensions…js (internal/modules/cjs/loader.js:1173:10) {
      code: ‘MODULE_NOT_FOUND’,
      requireStack: [
      ‘/home/pi/MagicMirror/modules/MMM-GoogleAssistant/node_modules/@bugsounet/snowboy/lib/node/index.js’,
      ‘/home/pi/MagicMirror/modules/MMM-GoogleAssistant/node_modules/@bugsounet/snowboy/index.js’,
      ‘/home/pi/MagicMirror/modules/MMM-GoogleAssistant/node_helper.js’,
      ‘/home/pi/MagicMirror/js/app.js’,
      ‘/home/pi/MagicMirror/js/electron.js’,
      ‘/home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js’,
      undefined

      Yes, a black screen

      posted in Troubleshooting
      U
      ulster
    • RE: MagicMirror² v2.15.0 is available don't work.

      @sdetweil said in MagicMirror² v2.15.0 is available don't work.:

      npm install

      yes

      posted in Troubleshooting
      U
      ulster
    • MagicMirror² v2.15.0 is available don't work.

      MagicMirror² v2.15.0 is available, it seems not to work.
      I made de update and its off.
      Only opens electron
      Can someone help please?

      posted in Troubleshooting
      U
      ulster
    • RE: {HowTo} turn on/off your monitor (Time based, PIR/Button, App)

      @sdetweil

      This one. Mentioned in the first page.
      how to remove it?

      #!/usr/bin/env python

      import sys
      import time
      import RPi.GPIO as io
      import subprocess

      io.setmode(io.BCM)
      SHUTOFF_DELAY = 120 # in seconds, how long the monitor will be on until next button press or PIR detection
      PIR_PIN = 22 # 15 on the board (this needn’t to be a PIR. Can be a button also)
      LED_PIN = 16 # optional, don’t use as Relay-PIN. It just shows detection time of the PIR without delay time

      def main():
      io.setup(PIR_PIN, io.IN)
      io.setup(LED_PIN, io.OUT)
      turned_off = False
      last_motion_time = time.time()

      while True:
          if io.input(PIR_PIN):
              last_motion_time = time.time()
              io.output(LED_PIN, io.LOW)
              print ".",
              sys.stdout.flush()
              if turned_off:
                  turned_off = False
                  turn_on()
          else:
              if not turned_off and time.time() > (last_motion_time + 
                                                   SHUTOFF_DELAY):
                  turned_off = True
                  turn_off()
              if not turned_off and time.time() > (last_motion_time + 1):
                  io.output(LED_PIN, io.HIGH)
          time.sleep(.1)
      

      def turn_on():
      subprocess.call(“sh /home/pi/monitor_on.sh”, shell=True)

      def turn_off():
      subprocess.call(“sh /home/pi/monitor_off.sh”, shell=True)

      if name == ‘main’:
      try:
      main()
      except KeyboardInterrupt:
      io.cleanup()

      posted in Tutorials
      U
      ulster
    • RE: {HowTo} turn on/off your monitor (Time based, PIR/Button, App)

      @cruunnerr

      its possible to kill 2.2 Using PIR-Script in rasp pi?
      Can you tell me how I cans do it please?
      thanks

      posted in Tutorials
      U
      ulster
    • RE: MMM-AssistantMK2 not recognizing my speech

      @Bugsounet também estou com o mesmo problema.
      Chamo Jarvis e aparece, mas dá a informação desculpa não entendo.

      I also have the same problem.
      I call Jarvis and appears, but gives the information sorry I don’t understand.

      posted in Troubleshooting
      U
      ulster