thank you
Read the statement by Michael Teeuw here.
Best posts made by ulster
Latest posts made by 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, usingnpm rebuild
ornpm install
). -
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
-
RE: MagicMirror² v2.15.0 is available don't work.
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’,
undefinedYes, a black screen
-
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? -
RE: {HowTo} turn on/off your monitor (Time based, PIR/Button, App)
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 subprocessio.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 timedef 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() -
RE: {HowTo} turn on/off your monitor (Time based, PIR/Button, App)
its possible to kill 2.2 Using PIR-Script in rasp pi?
Can you tell me how I cans do it please?
thanks -
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.