-
I've flashed the headless version of the OS to a Pi 3. I then booted it, and the wifi hotspot came up and I connected and then configured it with my wifi, and continued. I can see via my router that it is connected, but what am I supposed to do now to interact with it and make sure the connected devices are recognised/configured? As far as I can tell, there's no webgui, and no SSH (not that I know what the user and password would be). The headless documentation just stops dead there. Of course, I've tried speaking to it ("Hey Mycroft, what time is it?" etc), but there's not a peep back, so I don't know if any of the mic/speaker devices I've tried are correctly configured. A frustrating experience. Has anyone else got headless working on a Pi 3? For info, I've tried with the old AIY voice kit (free with MagPi years ago) and a Pi-top Pulse, both of which have a mic and speaker, and both of which I've had working before, including with Mycroft years ago. (I initially tried installing it on top of Pi OS lite, with the script, but had issues installing everything it needed). |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 14 replies
-
The Pi3B+ works well with the Google AIY V1 hat (MagPi issue 55) user pi #Now login as the new user: sudo raspi-config#set wifi #set local, tz, keyboard Increase swap size for Pi3B+ & Pi4-2gsudo nano /etc/dphys-swapfile set value to beCONF_SWAPSIZE=1024 sudo reboot connect ssh or locally into the new Pi(can connect with the @.local )#------------------------------------------------ *Prepare: """ #Add [all] at bottom of file sudo reboot #(to activate hat audio) #Verify only googlevoicehat card 0 """ Do OVOS installer:copy & paste /type following command line as per installersh -c "curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh && chmod +x installer.sh && sudo ./installer.sh && rm installer.sh" Accept default settings, optionally is okay to select extra skills |
Beta Was this translation helpful? Give feedback.
-
There a few other tips that you may like also. One is that you can make the button led go blinky when mycroft is active.
Two is that the button press does work, yetThree the Pi3 doesn't have quite enough omph to use the guiFour a Pi4-2 works very well with it allFive a Pi5 has a hardware difference and the gpio don't work normal (like Pi33 & Pi4)
Six moving sd card to a Pi5, you have to rerun the installer to activate the gui (don't know why)Seven volume is at abt 40% after install, use alsamixer to set for ~80-90% or
Eight "hey mycroft", "set volume to 90%"Nine I am still learning :)
Also I am running Ollama on the same Pi3, not the fastest but the model tinyllama is good
Glad to help :)
Mike
On Saturday, November 16, 2024 at 04:52:44 AM EST, vgnmnky ***@***.***> wrote:
That's very helpful, thank you. Yes, it's the one I got with issue 57, still have the magazine + box! Will give this another go today.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
do you have multiple speakers/soundcards? it kinda seems OVOS is changing the wrong sink what does since you are using a hat, maybe disable snd_bcm2835 (the rpi audio jack) completley to ensure it isnt selected? |
Beta Was this translation helpful? Give feedback.
The Pi3B+ works well with the Google AIY V1 hat (MagPi issue 55)
#New install of BookWorm 64bit lite
#Burn new image, connect to monitor & kybd for setup
#follow meno for start of local
#Set your user name & add passwd
user pi
passwd createone**
#Now login as the new user:
login pi
passwd your new pw**
sudo raspi-config
#set wifi
#set hostname
#turn off blanking
#enable ssh, spi, (optional i2c, serial (no), hardware (yes))
#set local, tz, keyboard
#Exit NO reboot yet
#check for IP then reboot
ifconfig
Increase swap size for Pi3B+ & Pi4-2g
sudo nano /etc/dphys-swapfile
set value to be
CONF_SWAPSIZE=1024
sudo reboot
connect ssh or locally into the new Pi
(can connect with the @.local )
#---…