@mrcoffee
Try this: https://github.com/shivasiddharth/GassistPi/tree/master/audio-drivers/USB-MIC-JACK/scripts
Read the statement by Michael Teeuw here.
Posts made by E3V3A
-
RE: Installing USB Soundcard using seperate USB Mic
@MrCoffee I don’t think resetting it is gonna be helpful, unless you know you have installed a bunch of other apt packages, and messed with system settings without writing down what you did.
-
RE: MMM-Loxone
@idoodler said in MMM-Loxone:
I just implemented
vcgencmd
it looks like it is a bit quicker. I will check it out the next few days and will push it if everything works.Yeah, but that only work with Rapsberry Piss , so if you want it to work on other devices, you need to use
xset
, and if you want to use xset on the Pi, you now also need to tell it that the blank screen should be black, withxsetroot -display :0 -solid black
. -
RE: Quick Question regarding Magic Mirror cache
@chef
You project sound awesome! IS it private, or will you share it with us? -
RE: Get JSON data stuck behind CAPTCHA click???? i.e. US Gas Prices
@hsukup1
Download their Android app and extract the APK file. then search for their URL (and API key if any). -
RE: Installing USB Soundcard using seperate USB Mic
@mrcoffee
I have seen solutions to this here: https://raspberrypi.stackexchange.com
search there.Also, only use ONE sound card for AUX (ouput) and MIC (input). Otherwise you will get confused and so your Pie will be unhappy too. It is also highly recommended to disable the internal broadcom sound card when using a USB card. That you can do in the boot config IIRC.
-
RE: Electron CPU usage
- How can we check the video driver without using rapsi-conf?
in dmesg? in systemd journal? - How/where do you set the:
ELECTRON_FORCE_WINDOW_MENU_BAR=1
. - What would be the easiest way for users to check electron version from command line?
- How can we check the video driver without using rapsi-conf?
-
RE: How I got my Magic Mirror working on a Raspberry Pi 0 (zero)
@baldrick
After a fresh reboot and just after starting MM and getting a black screen.
Run with:
'cd $HOME/MagicMirror/installers/; pm2 flush && rm ~/.pm2/logs/mm-* ; pm2 start mm.sh
And make sure that your
mm.sh
reads:cd ~/MagicMirror DISPLAY=:0 npm start
Can you please (open a new issue on Github) and post the output of:
uname -a
dmesg -x -d -T
journalctl -b
sudo cat /var/log/Xorg.0.log
sudo cat /var/log/lightdm/lightdm.log
systemctl list-unit-files -t service -all
cat ~/.xsession-errors
cat ~/.pm2/logs/mm-error-0.log
cat ~/.pm2/logs/mm-out-0.log
-
How to manually download and use font-awesome icons, for offline operation.
Many many modules rely on using a remote “font” source for displaying various icons. However, most icons we ever use, are the same and are very few, throughout the module lifetime.
For example, I have been thinking about all those calls to the font-awesome site that is being continually generated every time a module refreshes or MM is reloaded. Just to re-fetch the same few icons…
This seem crazy to me!
It would be great to hear from someone more knowledgeable how this works with cache in practice and how to best avoid all these calls that are also use to track you.
As I see it, I would prefer that the icons used could be downloaded upon installation or first run, and then prevented from getting requested again. Any ideas how to make this work?