@BKeyport shouldnt need any credentials.
Read the statement by Michael Teeuw here.
Posts
-
RE: Out of curiousness - what's this error?
-
RE: MMM-EasyBack YouTube force video quality
-
RE: Core News Module: Cycle sources
@palula this is a volunteer project, with no dedicated development team… SO… if u can/want to… have at it…
if it works and u want to give it back, you can -
RE: MMM-EasyBack YouTube force video quality
@Darkmx-6 what do you mean mirrored?
you mean split mode, serveronly and then some other browser on a different machine (or same, but different browser)
i ‘think’ the videos open where the browser is… not where the server is.
yeh, easyback just opens an iframe (in the browser) and launches youtube there… roughly the same way it works when u launch a video normally
if (this.config.youTubeID != '') { var iframe = document.createElement("IFRAME"); iframe.classList.add("iframe"); iframe.style = "border: 0 none transparent "; iframe.width = this.config.width; iframe.height = this.config.height; type="text/javascript"; iframe.src="https://www.youtube.com/embed/" + this.config.youTubeID + "?autoplay=1&loop=1&playlist=" + this.config.youTubeID; return iframe; -
RE: MMM-EasyBack YouTube force video quality
bunch of stuff in google search “youtube playback resolution”
usually the screen size is 1280/1024 or 1920/1080 (4k is 3840x2160)
-
RE: Custom.css is not working
@cookblook I don’t know the answer, but if you use the developers window (ctrl-shift-i), and select the elements tab, you can navigate thru the dom. and on any selected element you will see the style classes used, top to bottom.
I was just working on this for a style not being applied… darned computers are VERY picky about the spelling!
I just looked thru the MM code , and custom.css is loaded in the js/loader.js file
} else { // All modules loaded. Load custom.css // This is done after all the modules so we can // overwrite all the defined styles. loadFile(config.customCss, function() { // custom.css loaded. Start all modules. startModules(); }); -
RE: Column width change help
@mlcampbe custom.css has been force loaded as the last css file since 2.6 as I recall…
-
RE: Out of curiousness - what's this error?
@BKeyport The updatenotifications module
-
RE: Pir Sensor not shutting off screen.
I just added some code to my module to handle PIR_SENSOR sending notice of user around…
so you shouldn’t have to change anything there… well, stop it from turning off the display -
RE: Pir Sensor not shutting off screen.
@tinsebayacc some devices do not have the ability to turn to back… (none of my TV’s do)…
I wrote my MMM-SleepWake (on github) module to provide the ability to hide all modules to darken the screen…
its not off, and at night it has a glow (the backlight)… but its better than nothing…i don’t care how you detect motion, camera, pir, wave, …
when you do, call my provided script with ‘started’, and when the motion ends, call it again with ‘ended’
see the readme.set the “mode” to “hide”
I use a webcam for motion detection