MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. csongor.varga 0
    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 5
    • Posts 12
    • Groups 0

    csongor.varga 0

    @csongor.varga 0

    0
    Reputation
    4
    Profile views
    12
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    csongor.varga 0 Unfollow Follow

    Latest posts made by csongor.varga 0

    • RE: MMM-CalendarExt3 fine tuning

      I wonder if there are options to make the calendar taller.
      I am planning to use my MMM portrait. and with the week view the individual days get quite slim. Maybe each calendar entry take 2 lines, icon and the date on the top line, and the description below. I can increase the vertical size of the module to take up the extra space.

      posted in Troubleshooting
      C
      csongor.varga 0
    • RE: Google Keep setup

      If anyone managed to get this module working recently, please let me know because I can’t get passed the errors no matter what I do.

      posted in Troubleshooting
      C
      csongor.varga 0
    • RE: MMM-CalendarExt3 fine tuning

      @sdetweil said in MMM-CalendarExt3 fine tuning:

      @csongor-varga-0 Ext3 gets its events from the default calendar module.
      by default it does not send out past events

      Thanks a lot. That was the solution. I can see the past events now, the +1 icons are still appearing on some days where clearly I have less items than the maximum.
      I assume the best practice is to keep maximumEntires: 12, on the calendar module, and maxEventLines: 12, on the Ext3 aligned.

      posted in Troubleshooting
      C
      csongor.varga 0
    • MMM-CalendarExt3 fine tuning

      Hi All,

      I am making very good progress with the MMM-CalendarExt3, there are only a few things that are odd:

      • The calendar is not showing any past events, which just makes all this wasted space on the screen. Is that a setting?
      • I have configured maxEventLines: 8. On Monday there are 5 entries, but still I can see a +1 icon in the cell why is that? If there are more events, why not showing them?

      ad5bf0da-b070-4ba2-b162-6d0a53091d73-image.png

      The configuration looks like this:

      		{
      			module: "MMM-CalendarExt3",
      			position: "bottom_bar",
      			title: "This Week",
      			config: {
      			    mode: "week",
      			    instanceId: "basicCalendar",
      			    locale: 'hu-HU',
      			    maxEventLines: 8,
      			    firstDayOfWeek: 1,
      			    weekIndex: 0,
      			    weeksInView: 2,
      			    useWeather: false,
      			    skipDuplicated: true,
      			    useSymbol: false,
      			    calendarSet: ['Csongor', 'Iza']
      			}
      		},
      

      Thanks in advance.

      posted in Troubleshooting
      C
      csongor.varga 0
    • iframe not showing external content (ip camera view)

      I am want to use MMM-HVIEW-Snapshot to bring a IP camera picture into my MM screen.
      In the log, I can see the following

      Failed to load URL: xxxx with error: ERR_BLOCKED_BY_RESPONSE
      

      I have the IP whitelist set to my complete home subnet:

      address: "0.0.0.0",
      ipWhitelist: [["192.168.1.0","192.168.1.253"],"127.0.0.1", "::ffff:127.0.0.1", "::1"],
      

      And the URL I am trying to load is also on the same subnet:

      http://192.168.1.82/cgi-bin/api.cgi?cmd=Snap&channel=0&rs=abcd1234&user=xxx&password=xxx
      

      When I open my MM page in Chrome and check the errors, I see the following:

      Refused to display 'http://192.168.1.82/' in a frame because it set 'X-Frame-Options' to 'sameorigin'.
      

      I assume this is because the browser is not allowing the iframe to load a content from a different IP.

      How can I fix this? Or can you recommend an alternative module that would do the same?

      posted in Troubleshooting
      C
      csongor.varga 0
    • RE: MMM-CalendarExt2 tweaking

      @MMRIZE @BKeyport I started adding the settings for Ext3. I really like the week view, the Outlook-like layout is very good.

      So far I configured like this:

      		{
      			module: "MMM-CalendarExt3",
      			position: "bottom_bar",
      			title: "This Week",
      			config: {
      			    mode: "week",
      			    instanceId: "basicCalendar",
      			    locale: 'hu-HU',
      			    maxEventLines: 8,
      			    firstDayOfWeek: 1,
      			    weekIndex: 0,
      			    weeksInView: 2,
      			    useWeather: false,
      			    skipDuplicated: true,
      			    useSymbol: false,
      			    calendarSet: ['Csongor', 'Iza']
      			}
      		},
      

      What I find strange that I have a day with more than 5 events and I am seeing a +1 for that day even though maxEventLines is set to 8.

      The title which worked in Ext2, seems to be ingored. Is there a different way to add a title to the module?

      In this week view, I am not seeing any past event that happenes earlier that week. Although I have not set anything to hide the past events. Is this dependent on the main calendar configuration?

      In my Ext2 examples, I had a simple upcoming list, separate for my and my wife. I tried using a mode=day for this, but that is still displaying 7 days. And in the documentation I am not seeing a daysInView option.

      		{
      			module: "MMM-CalendarExt3",
      			position: "top_left",
      			title: "Csongor",
      			config: {
      			    mode: "day",
      			    instanceId: "basicCalendar",
      			    locale: 'hu-HU',
      			    maxEventLines: 7,
      			    dayIndex: 0,
      			    calendarSet: ['Csongor']
      			}
      		},
      

      Or would it be better just to use the main calendar component to display a simple upcoming list?

      posted in Troubleshooting
      C
      csongor.varga 0
    • RE: MMM-CalendarExt2 tweaking

      @MMRIZE Wow, thanks a lot. This already looks much better. I used the slotMaxHeight: "auto" and that seems to do the trick. The daily row is also much closer to what I was looking after. I could reduce the spacing between the days, but it is a minor issue. I still need to rotate my view to portrait which may change a few things.

      Thanks for mentioning CX3. I thought this is a separate component, but if that is a successor, I will migrate to that.

      Keep up the good work, and Merry Christmas!

      posted in Troubleshooting
      C
      csongor.varga 0
    • MMM-CalendarExt2 tweaking

      My MMM-CalendarExt2 in configured to read mine and my missus’s calendar. I have a two ‘daily’ views which shows today’s appoitments separately, and have a ‘week’ view at the bottom which shows the current week for both of us.

      Two questions:

      • The two daily views are under each other, but each view reserves a certain amount of space, and if there is only 1 appointment or none there is much empty space between the two views. Can it somebody be shrunk not to use more space what it needs?
        This is the config for the daily view:
            					{
      					name: "Csongor",
              				mode: "daily",
      					title: "Csongor",
      					position: "top_center",
      					calendars: ["Csongor"],
      					slotCount: 1,
            					},
      
      • The week view works great but instead of showing the current week, I rather have it show today and the next 6 days. I tried changing it to daily, but that is not rendered in columns and takes up the entire day. But essentally I would prefer daily with a slotCount: 7 and the days shown like in the week view.
      posted in Troubleshooting
      C
      csongor.varga 0
    • RE: Google Keep setup

      @sdetweil Yes,I did that. I mean I was checking the log messages on the main console screen, copied the URL and pasted it into the standard raspbian browser.
      Also as a side question: when I create the app password, it is a 16 letter code in groups on 4. Do you enter that into the config file with spaces after each 4 letter group or not? Or it makes no difference.

      posted in Troubleshooting
      C
      csongor.varga 0
    • Google Keep setup

      Hi All,
      I am trying to set up Google Keep and I use the MMM-GoogleKeep module. This seems to have worked for most, but I am not able to pass the Google Authentication part.
      I can see a message in the log that the module required authentication, but when I click on that and I try to go through the steps I get a never ending “One moment please” error.
      There is an issue on GitHub and based on response it has been resolved, by I wonder if it is broken again.
      I use 2FA and created and app password for this.
      Has one of you set this up recently?

      posted in Troubleshooting
      C
      csongor.varga 0