@lavolp3 - thanks and good spot. Currently rotation is only supported for table
mode. I’ve pushed a fix to the develop branch to enforce this behaviour. Please use git pull
to get and test the changes.
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Strava
-
RE: MMM-NetworkScanner
@Arjan said in MMM-NetworkScanner:
Also I’m trying to get there some colour in . But nonmatter what I do, there is only white. What is wrong in my config?
As I’m away from my mirror at the moment, I can’t test your config, however, there may be an issue with the new color functionality introduced following a recent pull request.
Until I get chance to look at it, then if you want to color the icons for all offline devices in the same color (e.g. red), then again try adding this to the
custom.css
file.MMM-NetworkScanner table tr.dimmed td i { color: #f00; }
To color online devices, change
tr.dimmed
totr.bright
To color the text as well as the icon, remove the trailingtd i
-
RE: MMM-NetworkScanner
@Arjan said in MMM-NetworkScanner:
Is there a way to only show devices if they are off-line.
Unfortunately, there’s not currently an option to hide online devices via the config. Feel free to raise a issue suggesting this enhancement via GitHub or even a Pull Request :winking_face:
However, there may be a way to do it using css. Devices which are online should be rendered in a table row (
tr
) with the class ofbright
, whilst offline devices will have the class ofdimmed
.I’m away from my mirror right now, so the example below may not be quite right, but try adding the following to the
custom.css
..MMM-NetworkScanner table tr.bright { display: none; }
-
RE: MMM-Strava
@lavolp3 said in MMM-Strava:
@ianperrin Table mode doesn’t seem to rotate the actual data into monthly data for me. I have done a run of 6.4 km on Tuesday. But much more in Jan and Feb :-)
Can you confirm that?Hi @lavolp3 - can you post your config for the module and if possible the output from the log?
-
RE: MMM-Strava
@lavolp3 that makes sense, I understand your issue now. Good pick up and we’ll done for finding that solution. I’ll look to update the read me with notes for creating the application as well as authorising the modules.
In the meantime, let me know how the token refresh works, or if any other errors appear.
-
RE: MMM-Strava
@lavolp3 I’ve updated the comment above with clearer notes for beta testers.
Everything you need should be done from the Magic Mirror, so if you can follow these steps again and let me know where the error occurs or your experience differs that would be great.
-
RE: MMM-NetworkScanner
@AshDarko said in MMM-NetworkScanner:
Any ideas?
Difficult to say without more information. If you are able to reproduce the error, please share more details.
-
RE: MMM-NetworkScanner
@AshDarko said in MMM-NetworkScanner:
Just changed it to “devices:” and now it works… god knows why i had “device”… i dont know if this is in some code somewhere haha
Glad you got it sorted.
I think all the documentation and code uses devices, but if you spot otherwise, please raise an issue.
-
RE: [Help!] svg Graph in module MMM-Strava
@lavolp3 - no worries. I’ve created a branch to develop this feature. Take a look at https://github.com/ianperrin/MMM-Strava/tree/feature/progress_chart
Once you checkout the branch, add/use the following configuration with either the legacy
strava_id
andaccess_token
options, or the newclient_id
andclient_secret
options:{ module: "MMM-Strava", position: "top_right", header: "Progress Chart", config: { activities: ["ride"], period: "ytd", mode: "progress" }, },
I haven’t yet implement the animated path to show the progress against the goal. ;)