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

    mboss

    @mboss

    0
    Reputation
    1
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    mboss Unfollow Follow

    Latest posts made by mboss

    • RE: Issue Calendar CustomEvents color

      @sdetweil

      Apologies for the late follow-up things got busy around the house.

      So I went back to basics to debug what I was doing wrong… I added just the bin pick-up calendar and the custom events code to a clean config file. Worked right away, just when I went to use the module “MMM-monthlyCalendar” that would not show the custom events colour.

      Thank you for helping me, guess I’m on to looking for a new calendar module.

      posted in Troubleshooting
      M
      mboss
    • RE: Issue Calendar CustomEvents color

      @sdetweil Thanks for the response,

      so I have downloaded the .ics file and had a look though. I cut and pasted the event descriptions into my MM config file, unfortunately still no colour action.

      I have even tried using just one keyword to match “Black, Blue, Green” as those would be the identifiers for each event, again still nothing.

      posted in Troubleshooting
      M
      mboss
    • Issue Calendar CustomEvents color

      Hey, I’m having trouble with my calendar. I have been able to colour multiple separate calendars to my liking. But I want to colour code our bin pickup schedule to reflect the bin colour. Is there an issue with using colours assigned to the calendar and the customEvent command together? Below is my config file for my calendars if anybody could review and tell me if I’m heading there right direction.

      Thanks for your help!

      			module: "calendar",
      			config: {
      				maximumEntries: 10000,
      				displaySymbol: true,
      				wrapEvents: true,
      				maxTitleLines: 20,
      				colored: true,
      				calendars: [
      					{
      						/*Person Calendar*/
      						symbol: "fa-calendar-o",
      						url: '1111',
      						color: "#0080FF",
      					},
      					{
      						/*Birthdays*/
      						symbol: "fa-birthday-cake",
      						url: "2222",
      						color: "#FFFF80",
      					},
      					{
      						/*Car Maintenace*/
      						symbol: "fa-car",
      						URL: "3333",
      						color: "#8080C0",
      					},
      					{
      						/*Baby's Calendar*/
      						symbol: "fa-calendar-o",
      						url: "4444",
      						color: "#80FF80",
      					},
      					{
      						/*House Maintenance*/
      						symbol: "fa-home",
      						url: "55555",
      						color: "#8080C0",
      					},
      					{
      						/*Person 2 Claendar*/
      						symbol: "fa-calendar-o",
      						url: "6666",
      						color: "#FF4F4F",
      					},
      					{
      						/*Family Claendar*/
      						symbol: "fa-users",
      						url: "77777",
      						color: "#FF8040",
      					},
      					{
      						/*Black Bin Pickup*/
      						url: "8888"
      					},
      				],
      				customEvents: [
      					{	
      						/*Black Bin*/
      						keyword: 'Black cart',
      						color: 'Black'
      					},
      					{
      						/*Blue Bin*/
      						keyword: 'Blue Cart - recycling',
      						color: 'Blue'
      					},
      					{
      						/*Green Bin*/
      						keyword: 'Green cart',
      						color: 'Green'
      					}
      				]
      			}
      		},
      		{
      			module: "MMM-MonthlyCalendar",
      			position: "bottom_bar",
      			config: {
      				mode: "twoweeks",
      				displaySymbol: true,
      				firstDayOfWeek: "sunday",
      				wrapTiles: true
      			}
      		},
      

      effb82f0-c544-4090-9d4a-e3795f208aba-image.png

      posted in Troubleshooting
      M
      mboss