• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
  1. Home
  2. cweinhofer
  3. Topics
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
C
Offline
  • Profile
  • Following 0
  • Followers 0
  • Topics 8
  • Posts 18
  • Groups 0

Topics

  • C

    Skip Update, Dismiss updatenotification

    Watching Ignoring Scheduled Pinned Locked Moved Tutorials
    3 Sep 7, 2024, 1:51 PM
    Sep 7, 2024, 9:39 AM
    1 Votes
    3 Posts
    188 Views
    K Sep 7, 2024, 1:51 PM
    @sdetweil you can skip modules (or mm itself) checking for updates, see ignoreModules property, docs
  • C

    Display data from ESPHome

    Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
    2 Jan 19, 2023, 8:22 PM
    Jan 19, 2023, 4:37 PM
    0 Votes
    2 Posts
    516 Views
    W Jan 19, 2023, 8:22 PM
    @cweinhofer Hi, I do not know ESPHome but it looks like it sends the data via MQTT. So you can use MMM-MQTTbridge to receive messages and MMM-ValuesByNotification to format and display them.
  • C

    show End in Calendar Config

    Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
    8 Nov 22, 2022, 1:04 PM
    Nov 21, 2022, 4:13 PM
    0 Votes
    8 Posts
    931 Views
    S Nov 22, 2022, 1:04 PM
    @cweinhofer its ok… who reads the doc?! lol… like any other reference manual it leaves out a lot of detail. someone could write 50-75 pages of explanation with matching output examples. but it would be a bear to maintain… as we still take changes to provide other formatting options… (a recently submitted one wants to show ONLY the start date/time when the event duration is 0 and showEnd is true…)
  • C

    Seperate Config for Web Access

    Watching Ignoring Scheduled Pinned Locked Moved Unsolved Feature Requests
    5 Sep 22, 2022, 12:25 PM
    Sep 22, 2022, 3:54 AM
    0 Votes
    5 Posts
    571 Views
    S Sep 22, 2022, 12:25 PM
    @cweinhofer each instance client causes request to data providers (even thru node helpers). almost NO module shares data with other instances (I made concerted efforts in my MyCovid19 module to do that… not easy) ( I think one of the third party climacell weather modules does this) so same or different port doesn’t help here. same or different instance doesn’t help, same or different server. all the same. for the 4 or 5 of you that might want to do this, you can create scripts to merge common elements, use source repositories and other approaches to minimizing the work of config construction, without burdening the core support with out of scope function. this is a composable information display panel with a single view. as this is open source, you are welcome to take the repo and do what you suggest. to have your idea considered more specifically, you should open an issue on the GitHub repo to engage the core team. nothing said here will affect this kind of change
  • C

    Seperate Config for Web Access

    Watching Ignoring Scheduled Pinned Locked Moved Tutorials
    7 Sep 22, 2022, 12:59 PM
    Sep 7, 2022, 8:50 PM
    0 Votes
    7 Posts
    934 Views
    S Sep 22, 2022, 12:59 PM
    @cweinhofer as mentioned over there, open an issue on GitHub for the project owners to examine many old I* devices don’t support the es6 JavaScript operators that most of us are using and going to. so the code won’t run. don’t know about android, but would expect the same problem I know there was a PR a couple years ago to restore the old operator based code, but it was not selected
  • C

    CSS for small fullscreen display

    Watching Ignoring Scheduled Pinned Locked Moved Development
    7 Jul 4, 2020, 11:06 PM
    Jul 4, 2020, 2:26 PM
    2
    0 Votes
    7 Posts
    2k Views
    S Jul 4, 2020, 11:06 PM
    @cweinhofer I am glad it helped
  • C

    Reusing Node Web Server

    Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
    4 Dec 31, 2019, 6:43 PM
    Dec 31, 2019, 5:25 PM
    0 Votes
    4 Posts
    712 Views
    S Dec 31, 2019, 6:43 PM
    @cweinhofer remember, when the update comes out to watch for the update error…
  • C

    When do you need quotes?

    Watching Ignoring Scheduled Pinned Locked Moved Tutorials
    2 Aug 27, 2018, 5:30 AM
    Aug 27, 2018, 3:04 AM
    1 Votes
    2 Posts
    999 Views
    M Aug 27, 2018, 5:30 AM
    Those are different types of variables: The first one is a number the second one a string. Boolean only has the values true and false which are exactly the same as writing 1 and 0. the true and false statement is there for readability in the code but gets replaced by 1 and 0 when executing the program ;) So when you put quotes to the number it is a text that includes this number, but you need it as a number you can use for example for calculations (obviously convertions are possible) For strings usually you can use either double or single quotes and both will work. it is usually a thing of consistency (which on is already used) which one you choose. However there are a couple advantages in using double quotes. JSON notation is written with double quotes (although it might work with single quotes aswell) double quotes are more convenient when your already familiar with other programming languages like C that often use double quotes for strings for people without programming experience double quotes are already familiar from their language where a text is marked with double quotes aswell When you need a single quote in the text you can write “It’s a boy”, but you would have to write ‘It's a boy’ using single quotes to mark that the single quote does not end the string. However when you use double quotes in the string to mark a text inside it’s the other way around : you could write ‘Simon says: “I am happy”’ but with double quotes you need to write “Simon says: "I am happy"” Hope I could clear the confusion a bit.
  • 1 / 1
Enjoying MagicMirror? Please consider a donation!
MagicMirror created by Michael Teeuw.
Forum managed by Sam, technical setup by Karsten.
This forum is using NodeBB as its core | Contributors
Contact | Privacy Policy