There is a comma missing after your apiKey
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-forecast-io -- Localized up to the minute weather
-
RE: MagicMirror is voted number 1 in the MagPi Top 50!
whoop whoop
Congratulations -
RE: MMM-WorldTides - show high and low water for your region
@onetwankyfive said in MMM-WorldTides - show high and low water for your region:
Is there a way to make it 12 hour instead of 24 hour time?
Hi, sorry it took a bit longer than expected to find some time. It actually used 12 hour format, I just forgot the “am/pm” extension.
So I replaced this:
time: ((this.config.timeFormat === 24) ? moment(t.dt, "X").format("HH:mm") : moment(t.dt, "X").format("hh:mm")),
with this:
time: ((this.config.timeFormat === 24) ? moment(t.dt, "X").format("HH:mm") : moment(t.dt, "X").format("hh:mm a")),
-
RE: Mat's mirror completed!
Good job!
I like the overall look and I really appreciate sharing detailed information and some of your experience. -
RE: Different sleep function
@tjop said in Different sleep function:
@yawns So that proposed code basically turns on and off the TV?
Correct. This feature is commonly used in other HDMI connected devices like Bluray players, gaming consoles and such. Most of the time it is used to keep things simple. You turn on your playstation and it automatically activates the connected tv and switches to the right input channel. Before installing the libcec stuff make sure your tv supports such features.
@tjop said in Different sleep function:
@yawns I could find a new tv panel to replace my current one that won’t have the annoying blue screen with the no signal message? I apologize for my ignorance on this subject. Is there a good way to find a new tv panel controller or what I should look for in general?
Right. If turning off and on does not work or is too slow you could look for another TV Panel Controller like here: http://www.ebay.com/bhp/lcd-controller-board-tv
I did not play around with these and you need to find one which works with your large screen and the display you are using but it could be worth a try. -
RE: Wifi Connectivity / Access Settings
If you attach a keyboard to the pi, couldn’t you just hit ALT+F4 to quit the fullscreen browser?
What happened to your settings? Are you able to access it on the network via wireless? If not could you plug in a network cable to access it then using putty (or any other ssh client)?
-
RE: Different sleep function
I am in the same situation. I have a Blaupunkt 32" tv. I was able to deactivate the blue screen in the tv settings but after running tvservice -o the screen shows “No Signal”.
I installed libcec (https://github.com/Pulse-Eight/libcec) and use these commands:Check if libcec is working:
cec-client -l
please note this is a small Lpower on the tv:
echo "on 0" | sudo cec-client -s -d 1
power off the tv:
echo "standby 0" | sudo cec-client -s -d 1
check tv status:
echo "pow 0" | sudo cec-client -s -d 1
Downside of this approach is the longer delay the tv needs to power on and show a picture. And I don’t know how long the tv will last until it is broken after continous on and off cycles.
Maybe you need to find a tv panel controller (on ebay, alibaba) suitable for your tv panel without annyoing onscreen displays.
-
RE: MMM-Todoist - Your todoist tasks on your mirror
This is what the readme on github says:
Array of 1 ProjectId you want to display. Possible values: array Default value: [ 166564794 ] Example: [166564794] Getting the Todoist ProjectID: 1) Go to Todoist (Log in if you aren't) 2) Click on a Project in the left menu 3) Your browser URL will change to something like "https://todoist.com/app?lang=en&v=818#project%2F166564897" Everything after %2F is the Project ID. In this case "166564897"
-
RE: MMM-WorldTides - show high and low water for your region
There should be. I use the time format which is set in config.js but I did not check. I simply forgot about that. I will check tomorrow evening and let you know what to do.