Looks really nice! Well done! Love the little shelf and the plant. Really adds to the robust and nature look of the frame!
Latest posts made by MaXi-XCeL
-
RE: Riverwood mirror.
-
RE: Homeassistant und Magic Mirror problem whith MQTT character string help
Perfection! Nicely done! Big-ups for all the Pro’s supporting this awesome platform!
David -
RE: Homeassistant und Magic Mirror problem whith MQTT character string help
Look at this:
https://tasmota.github.io/docs/DHT11/So maybe you can use:
topic: 'tele/espejo1/SENSOR:state:JSONPATH($.DHT11.Temperature)'
or something like that.
-
RE: Homeassistant und Magic Mirror problem whith MQTT character string help
@droncho Maybe this module can help you get a better idea on how to parse your Sensor data.
https://github.com/ottopaulsen/MMM-MQTT
Alternatively you can try using:
topic: 'tele/espejo1/Temperature'
or
topic: 'tele/espejo1/SENSOR/Temperature'
in your config. I am not familiar with sensors yet…
-
RE: MMM-Strava Auth Fail
Your config.js should also allow listen on for 192.168.1.23. By default it is set to “localhost” only.
There is also a “ipWhitelist” which should reflect the ip address of your Mac and your PI.
Here’s my config.js relevant to listen on and ipWhitelist
var config = { address: "0.0.0.0", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface // - "0.0.0.0", "::" to listen on any interface // Default, when address config is left out or empty, is "localhost" port: 8080, basePath: "/", // The URL path where MagicMirror is hosted. If you are using a Reverse proxy // you must set the sub path here. basePath must end with a / ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "192.168.178.73", "192.168.178.76"], // Set [] to allow all IP addresses // or add a specific IPv4 of 192.168.1.5 : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"], // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
And here’s my Strava module in “config.js”
{ module: "MMM-Strava", position: "bottom_right", header: "Strava", config: { client_id: "12345", client_secret: "123456789012345678901234567890", mode: "chart", chartType: "bar", activities: ["run"], stats: ["count", "distance", "elapsed_time", "achievements"], period: "recent", units: "metric", } },
If you’ve downloaded the Strava module and add it to your config together with the listen on and ipWhitelist you should be able to successfully register and use the module.
Good luck!
David -
RE: Homeassistant und Magic Mirror problem whith MQTT character string help
You will have to do something like the default “currentweather” module does when parsing the data received from https://api.openweathermap.org/
Just check the content of “currentweather.js” in MagicMirror/modules/default/currentweather
I can’t tell you what to do (yet) but your sensor output is very similar to the output received from openweathermap.
Below the code received from https://api.openweathermap.org/ which is processed and presented to your MagicMirror via the default module “currentweather”.
{"coord":{"lon":4.8264,"lat":52.4385},"weather":[{"id":500,"main":"Rain","description":"light rain","icon":"10n"},{"id":310,"main":"Drizzle","description":"light intensity drizzle rain","icon":"09n"}],"base":"stations","main":{"temp":276.16,"feels_like":272.32,"temp_min":275.93,"temp_max":276.48,"pressure":1011,"humidity":93},"visibility":10000,"wind":{"speed":3.09,"deg":310},"rain":{"1h":0.25},"clouds":{"all":75},"dt":1610059500,"sys":{"type":1,"id":1524,"country":"NL","sunrise":1610005749,"sunset":1610034267},"timezone":3600,"id":2744118,"name":"Zaandam","cod":200}
Hope this helps pointing you in the right direction.
David -
RE: Bathroom Magic Mirror
Just amazing! So well executed. Thank you for the inspiration!
-
RE: Can"t get wind speed shown in KMPH why?
Re: Can"t get wind speed shown in KMPH why?
Turns out the variable (useKMPHWind) in your “config.js” should be with a lowercase w for useKMPHwind.
{ module: "currentweather", position: "top_right", config: { location: "Zaandam", locationID: "2744118", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city appid: "12345678901234567890", roundTemp: true, useBeaufort: false, useKMPHwind: true, } },
-
RE: calendar_monthly: Please help me with column width.
@ashishtank said in calendar_monthly: Please help me with column width.:
#calendar-table {
width: 80%;
}This worked perfectly. Thank you ashishtank! Really helpful.
-
calendar_monthly: Please help me with column width.
I love the calendar_monthly module. It’s a true addition to my Magic Mirror project. Can you please help me reduce the width of the columns? I’m failing to figure it out.
I’m talking about the space between ma. di. wo. do. and their corresponding dates.
I’ve been working with custom.css, moving things from the calendar_monthly mcal.css to custom.css and I even tried to inspect the elements in Chrome but I just can’t figure it out.Please help. I’m almost there