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

Posts

Recent Best Controversial
  • RE: MMM-WeatherGraph - new module using OpenWeatherMap

    Hi, great module. Is it possible to change the white between temperatures to f.e. “/” ?

    also is it possible to add “C” to temperature ? so it will show °C

    posted in Utilities
    M
    Maros
    Apr 13, 2023, 12:00 PM
  • RE: MMM-crypto-portfolio

    Is it possible to add to this API from Helium network ? so i will be able to see current amount in my helium wallet ?
    I don’t want to manually write amount as this is changing.

    I tried to search modules but i don’t see any suitable module.

    Maybe edit MMM-Coinbase module to show only Helium wallet from (explorer.helium.com)

    posted in Utilities
    M
    Maros
    Feb 17, 2022, 7:13 PM
  • Helium explorer module

    Hello,

    Can someone help how to create module that will take few informations from explorer.helium.com site ?

    Show information
    Number of hotspots owned by owner
    Name of hotspot
    Sync status
    Total amount of HNT
    24h earnings
    Witnessed
    Beacons

    It should be easy for someone :) maybe someone will find some time to code this :)

    posted in Requests helium crypto explorer
    M
    Maros
    Feb 16, 2022, 4:43 PM
  • RE: MMM-Darksky-hourly - change icons

    please post your changes maybe there is just mistype

    posted in Custom CSS
    M
    Maros
    Oct 5, 2019, 2:09 PM
  • RE: Adjusting News Feed so it doesn’t overlap with left and right modules

    @huso15 you can choose what is better.

    try cut lines and if it will be not acceptable you can try second option.

    posted in Custom CSS
    M
    Maros
    Sep 4, 2018, 2:18 PM
  • RE: Adjusting News Feed so it doesn’t overlap with left and right modules

    You can do it with configuration options mentioned in readme.
    Cut to more lines or select how many leathers can be displayed

    https://github.com/MichMich/MagicMirror/blob/master/modules/default/newsfeed/README.md

    posted in Custom CSS
    M
    Maros
    Sep 4, 2018, 6:06 AM
  • RE: Making two way mirror from commercial mirror

    how you can remove the silver layer without destroying the mirror ?
    if you remove silver layer you get normal glass no ?

    posted in Hardware
    M
    Maros
    Sep 2, 2018, 7:07 PM
  • RE: MMM-Darksky-hourly - change icons

    what i’ve done :

    1. download icons from : https://www.amcharts.com/free-animated-svg-weather-icons/
    2. put icons in folder MagicMirror/css/icons (if it’s not there create it)
    3. edit custom.css in MagicMirror/css and add :
    .MMM-darksky-hourly {
    }
    
    .MMM-darksky-hourly .big-icon {
      font-size: 70%;
      line-height: 65px;
      display: inline-block;
      -ms-transform: translate(0, -3px); /* IE 9 */
      -webkit-transform: translate(0, -3px); /* Safari */
      transform: translate(0, -3px);
      width: 140px;
    }
    
    .MMM-darksky-hourly .summary {
      width: 400px;
    }
    
    .MMM-darksky-hourly .forecast {
      text-align: left;
      min-width: 400px;
      margin-top: 0.05ex;
    }
    
    .MMM-darksky-hourly .forecast-row {
    }
    
    .MMM-darksky-hourly .forecast-row>span {
      display: table-cell;
      width: 60px;
    }
    
    .MMM-darksky-hourly .forecast-row .forecast-day {
      text-align: center;
      padding-right: 0.5em;
    }
    
    .MMM-darksky-hourly .forecast-row .forecast-hour {
      text-align: right;
      padding-right: 0.6em;
    }
    
    .MMM-darksky-hourly .forecast-row .weathericon {
      text-align: center;
      padding-right: 0.5em;
    }
    
    .MMM-darksky-hourly .forecast-bar {
      display: table;
      overflow: hidden;
    }
    
    .MMM-darksky-hourly .forecast-bar>span {
      display: table-cell;
      text-align: left;
    }
    
    .MMM-darksky-hourly .forecast-bar .bar {
      background-color: #aaa;
      line-height: 0.1em;
      border-radius: 0.1em;
      border: 0.5ex transparent solid;
      background-clip: padding-box;
      color: black;
    }
    
    .small.MMM-darksky-hourly .forecast {
      min-width: 200px;
      max-width: 300px;
    }
    
    .small.MMM-darksky-hourly .summary {
      width: 300px;
    }
    .MMM-darksky-hourly .wi-day-sunny {
    content: url("/css/icons/day.svg");
    }
    
    .MMM-darksky-hourly .wi-day-cloudy {
    content: url("/css/icons/cloudy-day-1.svg");
    }
    
    .MMM-darksky-hourly .wi-rain {
    content: url("/css/icons/rainy-6.svg");
    }
    
    .MMM-darksky-hourly .wi-night-clear {
    content: url("/css/icons/night.svg");
    }
    
    .MMM-darksky-hourly .wi-night-alt-cloudy {
    content: url("/css/icons/cloudy-night-2.svg");
    }
    
    .MMM-darksky-hourly .wi-cloudy {
    content: url("/css/icons/cloudy.svg");
    }
    
    .MMM-darksky-hourly .wi-hail {
    content: url("/css/icons/rainy-7.svg");
    }
    
    .MMM-darksky-hourly .wi-thunderstorm {
    content: url("/css/icons/thunder.svg");
    }
    
    .MMM-darksky-hourly .wi-snow {
    content: url("/css/icons/snowy-6.svg");
    }
    
    .MMM-darksky-hourly .wi-cloudy-gusts {
    content: url("/css/icons/cloudy-day-3.svg");
    }
    
    .MMM-darksky-hourly .wi-fog {
    content: url("/css/icons/cloudy.svg");
    }
    
    1. edit main.css change line 12, 14, 15 (this will change how far from borders other modules will be) (line 14 and 15 are 2x bigger than line 12)
      if you change to 40px line 12 line 14 and 15 will be 100% - 80px
         12   margin: 30px;
         14   height: calc(100% - 60px);
         15   width: calc(100% - 60px);
    
    1. restart mm (pm2 restart mm)

    maybe this will help someone :)

    posted in Custom CSS
    M
    Maros
    Sep 1, 2018, 10:28 AM
  • RE: My IKEA Ribba based 50x50 Mirror

    Thank you :) i mean depth of the frame after mirror is installed
    I want to know if everything from my setup will have enough space

    posted in Show your Mirror
    M
    Maros
    Aug 31, 2018, 6:10 PM
  • RE: My IKEA Ribba based 50x50 Mirror

    looks great :) can you please tell me how thick is your mirror ?
    And also the frame itself on ikea page i found it’s 4,5cm but after you put there glass how much real space left ?

    posted in Show your Mirror
    M
    Maros
    Aug 31, 2018, 3:20 PM
  • 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