Make sharing your PS5 screenshots and video clips just a little bit easier.
The code is provided as-is and no support will be provided.
- RaspberryPi Zero W
- Understand how teslausb works
Raspberry Pi can emulate USB gadgets so we emulate it as a USB mass storage device that PS5 can write into and than we start a web server which provide you UI to access into the content of that emulated storage.
While the access is enabled on the Web UI, the storage will be unmounted from PS5. You will need to lock it again for it to be usable on PS5.
I might have missed some steps here...
From a computer:
- run
yarn; yarn buildin the repo - copy the repo into the sd card (to the root of your raspberry pi OS rootfs at /pips5)
From the raspberry pi:
- Setup USB gadget mode (add
dtoverlay=dwc2to/boot/config, adddwc2andg_mass_storageto/etc/modules) - Install nginx, supervisor, avahi-daemon, ruby
- Change its hostname to pips5 (this allows it to be reachable via pips5.local)
- copy
supervisord.confto/etc/supervisord/conf.d/pips5.conf - copy
nginx.confto/etc/nginx/sites-available/default - add
fstabto/etc/fstab - add
modprobe.confto/etc/modprobe.conf - run
setup.shto create a 4GB image file - run
bundle installin the repo - make sure nginx, supervisor and avahi-daemon are enabled (
systemctl enable)
