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

    Posts

    Recent Best Controversial
    • RE: Hello-Lucy

      @sdetweil Sorry trying to think of anything possible

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @sdetweil the beta firmware & bootloader that lets you boot from usb

      sudo apt update
      sudo apt full-upgrade
      Sudo nano /etc/default/rpi-eeprom-update
      sudo rpi-eeprom-update -d -f /lib/firmware/raspberrypi/bootloader/beta/pieeprom-2020-05-27.bin
      
      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @sdetweil yeah still not working with lucy even though arecord works, would it have anything to do with that i went beta with the pi4?

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @sdetweil i specified the mic in ~.asoundrc so now arecord goes directly to the usb mic but still throws the format code, lucy still wont pick it up tho

      
      pcm.!default {
        type asym
        playback.pcm {
          type plug
          slave.pcm "output"
        }
        capture.pcm "hw:2,0"
      }
      
      pcm.output {
        type hw
        card 1
      }
      
      ctl.!default {
        type hw
        card 1
      }
      
      
      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @sdetweil
      yes on both i hear what i said and changing the microphone line in config is all i’ve ever done to get it working, flash raspbian -> install MM and modules -> run arecord -l and change the mic config line to what my pi reflects

      Pi4b

       {
      disabled: false,
      module: "Hello-Lucy",
      position: "bottom_bar",
      config: {
          keyword: 'JARVIS',              // keyword to activate listening for a command/sentence
          timeout: 5,                        // timeout listening for a command/sentence
          standByMethod: 'DPMS',              // 'DPMS' = anything else than RPi or 'PI'
          microphone: "2,0",                  // run "arecord -l" card # and device # mine is "0,0"
          sounds: ["intro.mp3"],        // welcome sound at startup. Add several for a random greetings
          confirmationSound: "ding.mp3",      // name and extension of sound file
          startHideAll: false,                 // All modules start as hidden EXCEPT PAGE ONE
          // *** Page One is your default startup page *** This overrides startHideAll: true,
          pageOneModules: ["Hello-Lucy","MMM-AfterShip"],                     // default modules to show on page one/startup
          pageTwoModules: ["Hello-Lucy", "MMM-BMW-OW"], // modules to show on page two
          pageThreeModules: ["Hello-Lucy", "MMM-Systemstats"],                 // modules to show on page three
          }
      }
      

      Pi3b+

      {
      disabled: false,
      module: "Hello-Lucy",
      position: "bottom_bar",
      config: {
          keyword: 'JARVIS',              // keyword to activate listening for a command/sentence
          timeout: 5,                        // timeout listening for a command/sentence
          standByMethod: 'DPMS',              // 'DPMS' = anything else than RPi or 'PI'
          microphone: "2,0",                  // run "arecord -l" card # and device # mine is "0,0"
          sounds: ["yourang.mp3"],        // welcome sound at startup. Add several for a random greetings
          confirmationSound: "ding.mp3",      // name and extension of sound file
          startHideAll: false,                 // All modules start as hidden EXCEPT PAGE ONE
          // *** Page One is your default startup page *** This overrides startHideAll: true,
          pageOneModules: ["Hello-Lucy","MMM-AfterShip"],                     // default modules to show on page one/startup
          pageTwoModules: ["Hello-Lucy", "MMM-BMW-OW"], // modules to show on page two
          pageThreeModules: ["Hello-Lucy", "MMM-Systemstats"],                 // modules to show on page three
          }
      }
      
      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @sdetweil said in Hello-Lucy:

      arecord --format=S16-LE test.wav

      pi@MagicMirror:~ $ arecord --format=S16_LE test.wav
      arecord: main:828: audio open error: No such file or directory
      
      
      pi@MagicMirror:~ $ arecord -D hw:2,0 --format="S16_LE" test.wav
      Recording WAVE 'test.wav' : Signed 16 bit Little Endian, Rate 8000 Hz, Mono
      ^CAborted by signal Interrupt...
      pi@MagicMirror:~ $ ls
      Bookshelf  Desktop  Documents  Downloads  MagicMirror  Pictures  pocketsphinx  Public  sphinxbase  Templates  test.wav  Videos
      pi@MagicMirror:~ $
      

      if i specify the USB camera it works, if i leave it to defaults audio open error

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @sdetweil also weirdly enough

      pi@MagicMirror:~ $ arecord -D hw:2,0 test.wav
      Recording WAVE 'test.wav' : Unsigned 8 bit, Rate 8000 Hz, Mono
      arecord: set_params:1339: Sample format non available
      Available formats:
      - S16_LE
      
      

      but

      pi@MagicMirror:~ $ arecord  test.wav
      arecord: main:828: audio open error: No such file or directory
      pi@MagicMirror:~ $
      
      
      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @sdetweil said in Hello-Lucy:

      ~/.asoundrc

      Pi3 file doesnt exist - mic shows error but works
      pi4 file exists - mic shows error still doesn’t work

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @Mykle1 Sorry to be bothering you again, decided to switch to my pi4b to see how it performs, and now the usb camera I had working on the pi3b+ will not work now, arecord -l lists it as card 2 device 0 and it still says error. Im at a lost npm start dev shows no errors and if I take the same config over to the 3b+ with the proper mapping it works fine

      pi@MagicMirror:~ $ arecord test.wav
      ALSA lib pcm.c:2565:(snd_pcm_open_noupdate) Unknown PCM input
      arecord: main:828: audio open error: No such file or directory
      
      
      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      :face_with_tears_of_joy: but thats what i do for a living, I build it or someone else does, then i break it and i fix it, lol

      on another note, i guess i said too many unkown commands or somethings and a list of all the commands possible popped up and wont go away, any thoughts other than rebooting :grinning_face_with_smiling_eyes:

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @Mykle1 got 1080P back by setting
      hdmi_group=1
      hdmi_mode=16
      hdmi_boost > 6
      hdmi_ignore_edid = 0xa5000080
      hdmi_edid_file = 1

      in /boot/config.txt

      but now i get green flecks everywhere

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @Mykle1 I FIXED IT!!! Sorry lol But it goes to 720x480
      if i change it to 1920x1080 like i had it no video output on the hdmi any more

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @Mykle1 turns out I just messed up the screen location like an idiot which fixed the blank dashboard and the mic error went away as well as the BMW_CC not loading. but I still get no hdmi output on this 3b+ I wonder what the heck that could be could I have burned that out if everything else on the pi is running fine?

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @Mykle1 gonna do a fresh install and copy my config onto the 4b because something messed up happened to all that hardware

      It booted but right to a completely blank black dashboard

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @Mykle1 Yup sorry to bother you, but I defintely fried it, i put the sd card in my pi4b and got video, my other problems must be from that

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @Mykle1 Maybe I fried my 3b+ when I also added this RPI HiFi AMP HAT TAS5713 Amplifier Audio Module 25W Class-D?

      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      @Mykle1
      1 there is no HDMI output of anything not raspbian, not the magic mirror, nothing, it used to default to the magic mirror dashboard monitor receives signal but is black

      1. Now even though I’ve changed nothing, my magic mirror wont show any modules just loads a black page

      3.```

      {
      disabled: false,
      module: "MMM-BMW-CC",
      position: "bottom_bar", // designed for bottom_bar(best) thirds should be good too
      config: {
          apiKey: "XXX_Santized_XXX", // Get at https://www.climacell.co/weather-api/pricing/
          ownTitle: "Current Conditions",
          tempUnits: "us", // us = F or si = C
          lat: '39.321940', // Your latitude
          lon: '-74.604440', // Your longitude
          css: "1", // 1-6
          playSounds: "no",
          useHeader: false, // true if you want a header
          header: "Your header",
          maxWidth: "100%",
          updateInterval: 5 * 60 * 1000,
      }
      

      },

      
      no errors with npm start dev at all 
      > magicmirror@2.11.0 start /home/pi/MagicMirror
      > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js "dev"
      
      [2020-05-27 20:27:05.311] [LOG]    Starting MagicMirror: v2.11.0
      [2020-05-27 20:27:05.325] [LOG]    Loading config ...
      [2020-05-27 20:27:05.336] [LOG]    Loading module helpers ...
      [2020-05-27 20:27:08.368] [LOG]    Initializing new module helper ...
      [2020-05-27 20:27:08.369] [LOG]    Module helper loaded: Hello-Lucy
      [2020-05-27 20:27:08.430] [LOG]    Initializing new module helper ...
      [2020-05-27 20:27:08.431] [LOG]    Module helper loaded: updatenotification
      [2020-05-27 20:27:08.433] [LOG]    No helper found for module: clock.
      [2020-05-27 20:27:08.976] [LOG]    Initializing new module helper ...
      [2020-05-27 20:27:08.977] [LOG]    Module helper loaded: MMM-AfterShip
      [2020-05-27 20:27:09.095] [LOG]    Initializing new module helper ...
      [2020-05-27 20:27:09.096] [LOG]    Module helper loaded: calendar
      [2020-05-27 20:27:09.118] [LOG]    Initializing new module helper ...
      [2020-05-27 20:27:09.119] [LOG]    Module helper loaded: MMM-SystemStats
      [2020-05-27 20:27:09.121] [LOG]    No helper found for module: currentweather.
      [2020-05-27 20:27:09.124] [LOG]    Initializing new module helper ...
      [2020-05-27 20:27:09.125] [LOG]    Module helper loaded: MMM-BMW-CC
      [2020-05-27 20:27:09.127] [LOG]    No helper found for module: MMM-Modulebar.
      [2020-05-27 20:27:09.127] [LOG]    All module helpers loaded.
      [2020-05-27 20:27:09.317] [LOG]    Starting server on port 8080 ...
      [2020-05-27 20:27:09.327] [INFO]   You're using a full whitelist configuration to allow for all IPs
      [2020-05-27 20:27:09.337] [LOG]    Server started ...
      [2020-05-27 20:27:09.339] [LOG]    Connecting socket for: Hello-Lucy
      [2020-05-27 20:27:09.340] [LOG]    Starting module helper: Hello-Lucy
      [2020-05-27 20:27:09.342] [LOG]    Connecting socket for: updatenotification
      [2020-05-27 20:27:09.343] [LOG]    Connecting socket for: MMM-AfterShip
      [2020-05-27 20:27:09.344] [LOG]    Starting node_helper for: MMM-AfterShip
      [2020-05-27 20:27:09.346] [LOG]    Connecting socket for: calendar
      [2020-05-27 20:27:09.347] [LOG]    Starting node helper for: calendar
      [2020-05-27 20:27:09.348] [LOG]    Connecting socket for: MMM-SystemStats
      [2020-05-27 20:27:09.349] [LOG]    Connecting socket for: MMM-BMW-CC
      [2020-05-27 20:27:09.351] [LOG]    Starting node_helper for: MMM-BMW-CC
      [2020-05-27 20:27:09.351] [LOG]    Sockets connected & modules started ...
      [2020-05-27 20:27:09.501] [LOG]    Launching application.
      [2020-05-27 20:27:14.160] [LOG]    Create new calendar fetcher for url:
      posted in Fun & Games
      S
      snikolaidis
    • RE: Hello-Lucy

      Hey @Mykle1 first off great module, but I’m having a little difficulty, A ) I have no video at all now, B ) the mic works but constantly shows error, and C ) so far MMM-BMW-CC hides and shows but stays a loading climacell data. Any advice/pointers??

      posted in Fun & Games
      S
      snikolaidis
    • MMM-BMW-OW

      Just sits at OpenWeather data … I know my key works because the default weather apps work

      MMM-BMW-CC works just fine though
      Id like to keep the same info set because CC shows different data

      posted in Troubleshooting
      S
      snikolaidis
    • RE: Has anyone got MMM-Remote-Control working on MM 2.11 ?

      @karsten13 said in Has anyone got MMM-Remote-Control working on MM 2.11 ?:

      ~/magicmirror/ru

      THANK YOU!!!

      posted in Troubleshooting
      S
      snikolaidis
    • 1 / 1