u might consider some battery backup mechanism, to allow you to shutdown gracefully, and resume
Read the statement by Michael Teeuw here.
Posts
-
RE: Minimalist MagicMirror [Fast Boot, ReadOnly, ClientOnly, RPi3B+]
-
RE: Orange PI
@deemedia what os does it run? ubuntu? just ignore the word rasb and do the manual install
i have installed on ordoid Xu4, and yesterday Nvidia Jetson Nano
-
RE: Webapp to control magic mirror , edit/delete/make profile and edit positions of modules
cool!
note that in each area, the modules are listed in the order they are shown in config.js (first in first out)…
-
RE: Is there a tutorial for inner mechanics of an RPG Combat System?
“One point of Strength increases your damage with Swords by 10”
do you have a set of those messages that you could examine for a pattern
like1st -4th word are the cause (‘One point of Strength’)
5th word has direction (‘increases’)
7th-9th words has the effect (‘damage with Swords’)
last word has the adjustment value (10)if they all have that pattern, you could write a regular expression to extract them and their parts
-
RE: Camera capture cannot be performed on the Magic Mirror.
@emrhssla said in Camera capture cannot be performed on the Magic Mirror.:
cv2.imwrite(‘chan.jpg’,frame)
i agree with sean… u need to be specific in your python script WHERE u write the file… here it defaults to the current directory at the time (which is NOT where the script is located)
maybe like this
cv2.imwrite('/home/pi/Desktop/chan.jpg',frame) -
RE: Finding module with high external traffic
@Sean if you dnslookup that ip address, does it have a name associated?
-
RE: Setup from scratch for beginners?
first, lets see if there is an error
on the black screen, using keyboard press crtl-shift-i to open the developers window
then using mouse select the console tab, and scroll up to see if there are any errors…(red text)black screen is usually caused by some fatal error in the UI components
-
RE: Black screen after reboot.
open the developers window, with ctrl-shift-i keystrokes,
then using mouse select the console tab, and then scroll up to find any errors (red text)please advise
-
RE: MMM-MyWeather by martinkooij doesn't work...
@Isid0r great… can u mark your issue resolved… thx
-
RE: is it working well about Multi RSS News Feed?
@poohaboy I added two feeds, and I see info from both
{ module: "newsfeed", disabled: false, position: "bottom_bar", config: { feeds: [ { title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" }, { title: "BBC", url: "http://feeds.bbci.co.uk/news/world/rss.xml", } ], showSourceTitle: true, showPublishDate: true } },they are sorted by published date, most recent to oldest