Running on Pi zero running Lite Legacy to run the Adafruit Video Looper.
When I first turn on (after full shutdown) the screen doesn't work first time (once in a blue moon it will work but virtually never). The pi is running a video looper with a USB speaker and I can hear the audio play so I know the looper is working, but nothing is shown on the screen.
I do a sudo reboot and usually this gets the screen to work, but sometimes it takes multiple reboots and/or shutdowns, which is not ideal. I've no idea what it is that is causing the screen to be so temperamental.
I am using the Hyperpixel round and have put this issue there but notice there is not the same level of support as on this channel
Running on Pi zero running Lite Legacy to run the Adafruit Video Looper.
When I first turn on (after full shutdown) the screen doesn't work first time (once in a blue moon it will work but virtually never). The pi is running a video looper with a USB speaker and I can hear the audio play so I know the looper is working, but nothing is shown on the screen.
I do a sudo reboot and usually this gets the screen to work, but sometimes it takes multiple reboots and/or shutdowns, which is not ideal. I've no idea what it is that is causing the screen to be so temperamental.
I am using the Hyperpixel round and have put this issue there but notice there is not the same level of support as on this channel
This is my install method:
Install raspberry lite legacy
Install basic stuff sudo apt-get update sudo apt-get install -y git
Install Hyperpixel round git clone https://github.com/pimoroni/hyperpixel2r cd hyperpixel2r sudo ./install.sh
Disable i2c, SPI and any other interface
GL drive set to G1 legacy
Install Video Looper (https://learn.adafruit.com/raspberry-pi-video-looper/installation) git clone https://github.com/adafruit/pi_video_looper.git cd pi_video_looper sudo ./install.sh
Install speaker (https://thepihut.com/products/mini-external-usb-stereo-speaker) sudo apt-get update sudo apt full-upgrade sudo reboot sudo apt-get install pulseaudio sudo reboot
Check ALSA modules cat /proc/asound/modules
Check sound hardware cat /proc/asound/cards
Check info on card-1 amixer -c 0
Test speaker aplay /usr/share/sounds/alsa/Front_Center.wav -D sysdefault:CARD=0
Add to the user config in: sudo nano ~/.asoundrc
pcm.!default { type hw card 0 }
ctl.!default { type hw
card 0 }
sudo nano /usr/share/alsa/alsa.conf defaults.ctl.card 0 defaults.pcm.card 0
options snd_usb_audio index=0
Any advice on how to make it run more reliably would be much appreciated.