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

    Posts

    Recent Best Controversial
    • RE: MMM-EveryNews is not loading anything

      @sdetweil thanks for fixing @Mykle1 screw up LOL

      posted in Troubleshooting
      cowboysdudeC
      cowboysdude
    • RE: MMM-NewPIR v3

      @uros76 said in MMM-NewPIR v3:

      Hi. Does anyone know of a way to format “LastPresence” output? Default is a full date and time in one line however I would like to change the format of the output. Don’t see any config option to format it…

      How would you like it formatted?

      posted in System
      cowboysdudeC
      cowboysdude
    • RE: Input...What do you think?

      @barnosch said in Input...What do you think?:

      Looks very nice.
      The german translation seems to be wrong ;) and not even added to the MMM-NOAA.js
      Guess your are still in the middle of development.
      Added it myself but it is not working yet.
      Also i would like a 24hours setting, if possible.

      Thansk for your work

      PS: is this correct in the default settings? Guess not.

      show: "F".toLowerCase(), // show F or C Temps
      

      Done… in the config file it’s
      format: "12" or "24"

      testing

      posted in Development
      cowboysdudeC
      cowboysdude
    • RE: Magic Mirror with AI

      @cyberphox said in Magic Mirror with AI:

      @cowboysdude darn…this looked promising…and cool too!

      I agree with you but HackerHouse originally made this and it is suffering from the same problems this one is and they aren’t answering questions very well… so I took a 1/2 a day on this… that’s enough.

      posted in Show your Mirror
      cowboysdudeC
      cowboysdude
    • RE: MMM-BM-OW when 'no rain' for forecast undefined message received.

      @scumbelly this needs some css help but… is this what you’re after?
      Capture.PNG

      posted in Troubleshooting
      cowboysdudeC
      cowboysdude
    • RE: MMM-NewPIR v3

      @sdetweil Thanks Sam.

      posted in System
      cowboysdudeC
      cowboysdude
    • RE: How can I see the HTML that being generated?

      Not sure what you’re after here… what module? Can’t answer a question without all the info here…

      posted in Development
      cowboysdudeC
      cowboysdude
    • RE: Smart home status display - not a mirror

      Awesome idea!!! you just gave me an idea … to put my HousePanel on my 10" alarm clock in my bedroom!.. it’s a touch screen so hey why not…

      posted in Show your Mirror
      cowboysdudeC
      cowboysdude
    • RE: MMM - NewsFeed Ticker Hangs

      @matthewlawson3 You can delete it from your config entry and go to the MagicMirror/modules directory find the module and delete it so for example :

      MagicMirror/modules/MMM-Whatever

      You go to MagicMirror/modules
      then delete the MMM-Whatever directory…

      Gone!

      posted in Troubleshooting
      cowboysdudeC
      cowboysdude
    • RE: MMM-NewPIR v3

      What is this module made for…RPI3 or RPI4?

      posted in System
      cowboysdudeC
      cowboysdude
    • RE: Module Developer Challenge - I surrender!

      @E3V3A That’s the beauty of a module. A developer builds how he wants it to work for himself then shares it with others :) The BEST thing about that is it’s open source so anyone can modify it to fit their own needs… I’ve done that several times and that’s what makes this so much fun! :)

      posted in Development
      cowboysdudeC
      cowboysdude
    • RE: The 32" Inch Mirror

      @albertlwj Sorry didn’t see this message!! It’s here ->
      http://108.29.66.102:443/topic/42/mmm-ticknews

      posted in Show your Mirror
      cowboysdudeC
      cowboysdude
    • RE: Shutdown Magic Mirror with Home Assistant

      @jordes

      https://www.shellhacks.com/raspberry-pi-shutdown-reboot-safely-command/

      I used this and it worked… here’s an example:

      I use a Sonos smart plug through SmartThings to turn off the Pi and turn it back on.

      There are commands from the above link you can use. For instance I used commands to control my Vizio TV through Home Assistant.

      Here is my ‘script’ for my TV.

      - platform: command_line
        switches:
            living_room_tv:
              friendly_name: TV
              command_on: "/usr/bin/curl -k -H \"Content-Type: application/json\" -H \"AUTH: Zzbaa0sttq\" -X PUT -d '{\"KEYLIST\": [{\"CODESET\": 11,\"CODE\": 1,\"ACTION\":\"KEYPRESS\"}]}' https://192.168.1.20:7345/key_command/"
              command_off: "/usr/bin/curl -k -H \"Content-Type: application/json\" -H \"AUTH: Zzbaa0sttq\" -X PUT -d '{\"KEYLIST\": [{\"CODESET\": 11,\"CODE\": 0,\"ACTION\":\"KEYPRESS\"}]}' https://192.168.1.20:7345/key_command/"
              command_state: "/usr/bin/curl -k -H \"Content-Type: application/json\" -H \"AUTH: Zzbaa0sttq\" -X GET https://192.168.1.20:7345/state/device/power_mode"
              value_template: >
                {% if value_json.ITEMS.0.VALUE == 1 %}
                  true
                {% else %}
                  false
                {% endif %}
      

      You can do the same to control the pi :)

      posted in Troubleshooting
      cowboysdudeC
      cowboysdude
    • RE: Trying to add a 3rd party module

      @fuzz said in Trying to add a 3rd party module:

      Hello all, I am new to this Magic Mirror. I got it up and running fine. I was able to change the weather info for my area. But I can not get any module to work, that I want to add. I tried putting in different spots in the config file. But that didn’t work.

      I tried different ones with no luck. I was trying to add the RSS and Stock ticker module.

      modules: [
          {
              module: 'stocks',
              position: 'bottom_bar',
              config: {
                  stocks: '.DJI,MSFT,AAPL,GOOG,INTC,CICS,TSLA,FB', // stock symbols
                  updateInterval: 37000 // update interval in milliseconds
              }
          }
      ]
      

      Can anyone help me where to put this at? thanks.

      Try this put it as your last module in the config.js

       {
              module: 'stocks',
              position: 'bottom_bar',
              config: {
                  stocks: '.DJI,MSFT,AAPL,GOOG,INTC,CICS,TSLA,FB', // stock symbols
                  updateInterval: 37000 // update interval in milliseconds
              }
          },
      

      The module before it must end in a coma as well just like the above example.

      So for example:

      {
      			module: 'weatherforecast',
      			position: 'top_right',
      			header: 'Weather Forecast',
      			config: {
      				location: 'New York',
      				locationID: '5128581',  //ID from http://www.openweathermap.org
      				appid: 'YOUR_OPENWEATHER_API_KEY'
      			}
      		},
      		{
      			module: 'newsfeed',
      			position: 'bottom_bar',
      			config: {
      				feeds: [
      					{
      						title: "New York Times",
      						url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      
      posted in Troubleshooting
      cowboysdudeC
      cowboysdude
    • RE: Module Developer Challenge - I surrender!

      @Mykle1 said in Module Developer Challenge - I surrender!:

      @E3V3A said in Module Developer Challenge - I surrender!:

      I’m very impressed with your progress.

      I appreciate that. Frankly, I’m amazed that I’ve gotten any of my modules to work. I joined this forum 13 months ago without the slightest idea of what linux or a raspberry pi even was. I realized quickly enough that I wanted to learn how things worked and started reading and asking questions. With the help of some very nice people I was able to make my first module, MMM-Cocktails. At this point, I was totally hooked. It’s still magic to me and I enjoy every minute of the learning process.

      HEYYYYYYYYYYYYYYYY hands above the desk…ABOVE…LOL

      posted in Development
      cowboysdudeC
      cowboysdude
    • RE: Little voice testing.....

      @cyrus1337 I just say ‘hide modules’… I could tell it to ‘go to sleep’ but haven’t gotten that far yet :)

      posted in Show your Mirror
      cowboysdudeC
      cowboysdude
    • RE: Lunartic not working without "request"

      @hango go here…until his pull request is complete but this is the fix.

      Just delete yours and reinstall this one.

      git clone https://github.com/cowboysdude/MMM-Lunartic into the ~/MagicMirror/modules directory.

      go to modules/MMM-Lunartic folder and type in npm install

      posted in Troubleshooting
      cowboysdudeC
      cowboysdude
    • RE: Certain Modules Making Screen Blank

      @efk4 said in Certain Modules Making Screen Blank:

      everything after weatherforecast is the stuff that doesn’t work - I’ve also removed all of my info.

      What I would do is just add one at a time make sure that one works then add your next…

      I did put it through a validator and it failed at this one ->

      {
      module: “MMM-Todoist”,
      position: “top_left”,
      header: “Assignments”,
      config: {
      accessToken: “#REMOVED#”,
      lists: [ #REMOVED# ]
      }
      },

      posted in Troubleshooting
      cowboysdudeC
      cowboysdude
    • RE: What is the difference between require() and getScripts()?

      @Mykle1 said in What is the difference between require() and getScripts()?:

      @cowboysdude said in What is the difference between require() and getScripts()?:

      I know people don’t usually ask for fear they’ll look ‘not smart’

      I don’t have this problem. ;-)

      Which one? Asking or not being smart LOL

      posted in Development
      cowboysdudeC
      cowboysdude
    • RE: The Italian "dual" Job [Build]

      That sir…is beautiful! Need a video! I really want to see this thing work.

      posted in Show your Mirror
      cowboysdudeC
      cowboysdude
    • 1 / 1