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

    Posts

    Recent Best Controversial
    • RE: MMM-Domiticz

      @Charley

      Very cool… can I make one suggestion? How about if it detects that it already has a name present for the temperature it doesn’t display the name for the humidity and/or baro just the value? That way you don’t get duplicate names for the same sensor.

      I can see in yours you have Woonkamer (Living Room) repeated 3 times which I assume is the same sensor?

      posted in Utilities
      J
      jaminben
    • RE: MMM-Domiticz

      @Charley

      I just updated to the new version and it only shows the temperature now… not sure if that was intended or not.

      posted in Utilities
      J
      jaminben
    • RE: MMM-Domiticz

      @Charley said in MMM-Domiticz:

      @jaminben Thanks for the thank you, i am still working on it to make it better.

      You can add more in your config.js settings

            showItems: ['temperature','energy','battery','co', 'blinds','humidity','baro'],   // possible items  temperature, energy, battery, co, blinds, humidity,  baro
      
      

      Could you please reply with your config settings for this module .(delete any personal information ip,username or password)

      I think I misread your question, however all sensors data are grouped in the newest version.

      @Charley

      My config.js file…

      /* Magic Mirror Config Sample
       *
       * By Michael Teeuw http://michaelteeuw.nl
       * MIT Licensed.
       *
       * For more information how you can configurate this file
       * See https://github.com/MichMich/MagicMirror#configuration
       *
       */
      
      var config = {
      	address: "localhost", // Address to listen on, can be:
      	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      	                      // - another specific IPv4/6 to listen on a specific interface
      	                      // - "", "0.0.0.0", "::" to listen on any interface
      	                      // Default, when address config is left out, is "localhost"
      	port: ******,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "********"], // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.168.1.5 :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      	language: "en",
      	timeFormat: 24,
      	units: "metric",
      
      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
      			module: "calendar",
      			header: "*******",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check-o ",
      						url: "********"
      					}
      				]
      			}
      		},
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		{
      			module: "currentweather",
      			position: "top_right",
      			config: {
      				location: "*******",
      				locationID: "*****",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "******"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "********",
      				locationID: "*******",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "*****"
      			}
      		},
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      					{
      						title: "BBC News",
      						url: "http://feeds.bbci.co.uk/news/uk/rss.xml"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      		{
      			module: "MMM-Domoticz",
      			position: "top_right",   // see mirror setting for options
      			config: {          
      				updateInterval: 45, // every 45 seconds
      				apiBase: '******',
      				apiPort: ****,
      				apiUser: "*******",
      					apiPw: "********",
      				temperatureTitle: "Current House Temperatures",
      				moduleTitle: "My smart home by Domoticz",
      				energyTitle: "Energy used by",
      				batteryTitle: "Battery level",
      				coTitle: "CO2 level",
      				blindsTitle: "Blinds",
      				energyNow: "Currently",
      				energyTotal: "Energy used",
      				batteryThreshold: 20,
      						coThreshold: 650,
      				subMenus: true,
      				showItems: ['temperature'],   // possible items  temperature, energy
      				excludedDevices: ['none','add your own']  // Device that will not be shown
      			}
      		},
      		{
      			module: 'MMM-Todoist',
      			position: 'top_right',	// This can be any of the regions. Best results in left or right regions.
      			header: 'Todoist', // This is optional
      			config: { // See 'Configuration options' for more information.
      				accessToken: '********',
      				maximumEntries: 60,
      				updateInterval: 10*60*1000, // Update every 10 minutes
      				projects: [ 166564794 ],
      				fade: false
      		  }
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      

      What I was trying to was something like:

      Garden 24.1 (temperature)
      55% (humidity)
      Lounge 20.2 (temperature)
      45% (humidity)
      Garage 22.1 (temperature)
      48% (humidity)

      Rather than:

      Garden 24.1 (temperature)
      Lounge 20.2 (temperature)
      Garage 22.1 (temperature)
      Garden 55% (humidity)
      Lounge 45% (humidity)
      Garage 48% (humidity)

      posted in Utilities
      J
      jaminben
    • RE: MMM-Domiticz

      Hi Charley,

      I’m a newbie to MM so excuse me if the answer is obvious… the temperature and humidity work correctly but is there a way to display one after the other for the same sensor… so in my example screenshot you can see it lists all the temperatures first and then the humidity readings.

      Anyway, many thanks for creating the module… it’s fantastic :)

      0_1524401116389_house Tempretures.jpg

      posted in Utilities
      J
      jaminben
    • 1
    • 2
    • 2 / 2