• 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. Tippon
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Offline
  • Profile
  • Following 0
  • Followers 0
  • Topics 10
  • Posts 53
  • Groups 0

Tippon

@Tippon

2
Reputation
17
Profile views
53
Posts
0
Followers
0
Following
Joined Aug 11, 2019, 12:38 AM
Last Online Oct 18, 2024, 5:45 PM

Tippon Unfollow Follow

Best posts made by Tippon

  • RE: Exact matches for phrases in config.js?

    @lavolp3 @sdetweil Thanks for the replies, it worked perfectly! :)

    I tried a space before and after ‘live’, and both at once. I made a separate entry for ‘delivery’ too, and put it after the ‘live’ line. The ‘delivery’ line wasn’t necessary, but I tried it as an override (which didn’t work), and liked the way it looked :D

    {keyword: 'live ', symbol: 'music', color: 'Aqua'},
    {keyword: 'delivery', symbol: 'truck', color: 'GreenYellow'},
    
    posted in Troubleshooting
    T
    Tippon
    Apr 27, 2021, 8:09 PM
  • RE: Calendar FontAwesome Icon not displayed

    @Rene1695 This is currently working for me:

    						{keyword: 'leave', symbol: 'beer', color: 'yellow'},
    						{keyword: 'anniversary', symbol: 'beer', color: 'yellow'},
    						{keyword: 'a/l', symbol: 'brands fa-twitch', color: 'aqua'}
    						],
            calendars: [
              {
                symbol: 'brands fa-twitch',
                url: 'https://my calendar link.ics'
              },
    

    Notice the ‘brands fa-twitch’ in the last keyword field, and in the symbols field under calendars. You don’t need them in both places, just whichever one you choose. They work for both options individually :)

    posted in Troubleshooting
    T
    Tippon
    Jan 22, 2024, 8:02 PM

Latest posts made by Tippon

  • RE: Calendar FontAwesome Icon not displayed

    @Rene1695 This is currently working for me:

    						{keyword: 'leave', symbol: 'beer', color: 'yellow'},
    						{keyword: 'anniversary', symbol: 'beer', color: 'yellow'},
    						{keyword: 'a/l', symbol: 'brands fa-twitch', color: 'aqua'}
    						],
            calendars: [
              {
                symbol: 'brands fa-twitch',
                url: 'https://my calendar link.ics'
              },
    

    Notice the ‘brands fa-twitch’ in the last keyword field, and in the symbols field under calendars. You don’t need them in both places, just whichever one you choose. They work for both options individually :)

    posted in Troubleshooting
    T
    Tippon
    Jan 22, 2024, 8:02 PM
  • RE: How difficult would it be to change the data an existing module receives?

    @sdetweil Thank you :)

    posted in Development
    T
    Tippon
    Jan 17, 2024, 11:54 PM
  • RE: Mirror for a Charity Auction

    @sdetweil Does that give you SSH access to the server you’re running everything on as well as other devices on your network?

    I’m currently looking into changing my server OS and putting everything into containers, and then reorganising my network to make everything easier to access, so I’m trying to get everything right from the start :)

    posted in Show your Mirror
    T
    Tippon
    Jan 17, 2024, 11:44 PM
  • RE: Mirror for a Charity Auction

    @bhepler That’s brilliant, thank you :)

    I’ve got some homework to do :D

    posted in Show your Mirror
    T
    Tippon
    Jan 17, 2024, 11:10 PM
  • RE: How difficult would it be to change the data an existing module receives?

    @sdetweil said in How difficult would it be to change the data an existing module receives?:

    and then

                                   cvt().fromFile(payload.tmpfile) // input xls  // changed to tmpfile
         				.subscribe((jsonObj, index) => { 
                                           // handle each row
                                       })
    

    Sorry, I forgot to ask, where does this go? Does it go into the node_helper.js with the other line?

    posted in Development
    T
    Tippon
    Jan 17, 2024, 2:14 AM
  • RE: Mirror for a Charity Auction

    That looks amazing :)

    @bhepler said in Mirror for a Charity Auction:

    It has my reverse SSH code on it, so I can get into it remotely now that it’s been auctioned off.

    I don’t really understand reverse SSH. Does it let you connect if you don’t know the remote IP address? I’m looking at setting up a mirror for my mother in law, and if she changes ISP, the IP address will change. She’s not technical enough to be able to find the new one and let me know.

    posted in Show your Mirror
    T
    Tippon
    Jan 17, 2024, 1:21 AM
  • RE: Calendar FontAwesome Icon not displayed

    @Rene1695 How have you got it set up in your config.js? Mine looks like this, and works with my icons:

    		coloredText: true,
    		customEvents: [
    						{keyword: 'Birthday', symbol: 'fa-birthday-cake', color: 'Gold'},
    						{keyword: 'Clinic', symbol: 'biohazard', color: 'Silver'},
    						{keyword: 'injection', symbol: 'syringe', color: 'Silver'},
    						{keyword: 'meds', symbol: 'pills', color: 'Silver'},
    						{keyword: 'Scales', symbol: 'weight', color: 'Pink'},
    						{keyword: 'pictures', symbol: 'camera', color: 'Pink'},
    						{keyword: 'recycling', symbol: 'recycle', color: 'Red'},
    						{keyword: 'rubbish', symbol: 'trash-alt', color: 'Red'},
    						{keyword: 'live ', symbol: 'music', color: 'Aqua'},
    						{keyword: 'gig', symbol: 'music', color: 'Aqua'},
    						{keyword: 'delivery', symbol: 'truck', color: 'GreenYellow'},
    						{keyword: 'leave', symbol: 'beer', color: 'yellow'},
    						{keyword: 'anniversary', symbol: 'beer', color: 'yellow'},
    						{keyword: 'a/l', symbol: 'bed', color: 'aqua'}
    						],
    
    posted in Troubleshooting
    T
    Tippon
    Jan 17, 2024, 12:50 AM
  • RE: How difficult would it be to change the data an existing module receives?

    @sdetweil Brilliant, thank you :)

    posted in Development
    T
    Tippon
    Jan 8, 2024, 10:47 PM
  • RE: How difficult would it be to change the data an existing module receives?

    Just to double check before I break anything, if I forked the repo and replaced the installed version of MMM-Fitbit2 with my own, would I need to change anything in my config.js? I’m assuming that if I kept the same repo name it would just work, but I want to make sure.

    posted in Development
    T
    Tippon
    Jan 8, 2024, 10:09 PM
  • RE: How difficult would it be to change the data an existing module receives?

    @sdetweil That’s right, yes :)

    It’s ideal for me, and I have suspected ADHD, and don’t always remember to do things. I can just put the shortcut to this app next to my other health apps, and it acts as a reminder.

    I’ve decided to remove one of the MMM-fitbit2 default categories and replace it with a modified copy of the calorie goal category instead. The default shows the calories remaining until your calorie goal, but I also want to see how many calories I’ve consumed. I just had a quick play and it seems easy enough, but I need to make sure that it doesn’t break the existing categories too.

    Time for a break though, my kid’s about to get home from school, so any chance of peace and quiet is gone for the next few hours :D

    posted in Development
    T
    Tippon
    Jan 8, 2024, 3:12 PM
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