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

    Posts

    Recent Best Controversial
    • RE: Change Compliments

      Yes, you need to create them within config.js

      This is my config (replace ‘bla bla bla’ as you want):

      		module: "compliments",
      		position: "lower_third",
      			config: {
      			compliments: {
      				morning: [
      					"bla bla bla",
      					"bla bla bla"
      				],
      				afternoon: [
      					"bla bla bla",
      					"bla bla bla"
      					],
      				evening: [
      					"bla bla bla",
      					"bla bla bla"
      					]
      			},
      			updateInterval: 30000,
      			remoteFile: null,
      			fadeSpeed: 4000,
      			morningStartTime: 3,
      			morningEndTime: 12,
      			afternoonStartTime: 12,
      			afternoonEndTime: 17
      		}
      	},
      

      Please mark answer as correct and topic as Solved (if this solved your issue) :)

      posted in Troubleshooting
      T
      THeStigh
    • RE: Advise for a voice assistant

      @thedoorsfanatic Snowboy can be tricky, but @sean has made some good troubleshooting guides on the page for MMM-Hotword. But you can delete the MMM-Hotword folder and try to re-install it following these instructions to do it quite manually. If it fails, you at least will get a clear picture of where it actually failed:

      cd ~/MagicMirror/modules/
      sudo apt-get install libmagic-dev libatlas-base-dev sox libsox-fmt-all
      git clone https://github.com/eouia/MMM-Hotword.git
      cd MMM-Hotword
      npm install
      
      cd ~/MagicMirror/modules/MMM-Hotword/node_modules/snowboy
      npm install --save-dev electron-rebuild
      npm install nan
      ./node_modules/.bin/electron-rebuild
      
      posted in General Discussion
      T
      THeStigh
    • RE: How to start MM with a module as default hidden

      I used sendNotification to resolve this :)

      posted in Troubleshooting
      T
      THeStigh
    • RE: basic help

      @cade72 You forgot a comma after the last bracket :)

      posted in Troubleshooting
      T
      THeStigh
    • RE: Need a tester on Pi for a new module :)

      @mykle1 said in Need a tester on Pi for a new module :):

      @thestigh

      As I told you, I don’t have a Pi for testing purposes. However, I did the installation, as you instructed, on an HP G60 laptop running ubuntu 16.04 LTS. No issues with the installation and the module is very responsive.

      Send me a Pi and I’ll test it for you. :-)

      Hehehe… We have a tester now for Pi - in Europe :)

      posted in Development
      T
      THeStigh
    • RE: How to start MM with a module as default hidden

      @f17mc

      Hi, solution from @Sean is the ‘cleanest’ :) option (haven’t tested but trust Sean if he says so)

      posted in Troubleshooting
      T
      THeStigh
    • RE: Contribute to a module. Volunteers wanted! Easy!

      n290 Tromso - Norway
      n187 Oslo - Norway
      n5267 Finnsnes - Norway
      n287 Bergen - Norway
      n288 Trondheim - Norway
      n289 Stavanger - Norway
      n2513 Alta - Norway

      posted in Troubleshooting
      T
      THeStigh
    • RE: Need a tester on Pi for a new module :)

      @strawberry-3-141 and @ganget

      I’m so sorry guys, perhaps I didn’t think to clear when I wrote “just one”. I hope you can forgive this cold guy! Of course you can test it, there is no secrets :) It consist of code from several modules, where we think we have taken the best parts and put’em in a single module.

      sdetweil has also done a masterpiece with disabling the mic of pocketsphinx so the module can be used as Hotword to call other online modules like AssistantMk2.

      My goal was just to have it tested on multiple platforms and HW devices before letting it free ‘in the wild’. Me and @Mykle1 have tested on different amd64’s with integrated webcam’s and Ubuntu 16.04, and I’ve tested myself on Asus Tinker Board S with TinkerOS 2.0.8 and external webcam.

      Feel free to test and test, perhaps come with good feedback, even participate to make this module better :)

      PM sent!

      posted in Development
      T
      THeStigh
    • RE: Change Compliments

      @dgregory19 As @Mykle1 stated, there is another way.

      Personally, I prefer to have all custom configurations in one single file config.js and all custom css in the custom.css, by this I can add/remove/replicate configurations/modules installed from device to device. Makes it easy to backup :)

      Another tip;
      Above each module in config.js, you can add disabled: false / true, to temporarily make a module not load on MM. Like this:

      		{
      			disabled: false,
      			module: 'MMM-Remote-Control'
      		},
      

      If you need anymore help, please let me know.

      posted in Troubleshooting
      T
      THeStigh
    • 1 / 1