https://github.com/kapsner/raspi-midi-usb-hub
https://github.com/kapsner/raspi-midi-usb-hub
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kapsner/raspi-midi-usb-hub
- Owner: kapsner
- Created: 2024-03-16T22:52:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-23T07:27:03.000Z (about 1 year ago)
- Last Synced: 2025-01-12T12:29:20.017Z (4 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# raspi-midi-usb-hub
Custom setup; original post is here: https://neuma.studio/raspberry-pi-as-usb-bluetooth-midi-host/
Using an old Raspberry Pi Model B
## Preparations
1. download https://downloads.raspberrypi.com/raspios_lite_armhf/images/raspios_lite_armhf-2024-03-13/2024-03-12-raspios-bookworm-armhf-lite.img.xz
2. unxz the file: `unxz 2024-03-12-raspios-bookworm-armhf-lite.img.xz`
3. write it to SD card: `sudo dd if=~/Downloads/2024-03-12-raspios-bookworm-armhf-lite.img of=/dev/mmcblk0 bs=1024k status=progress`
- extend filesystem: Disks > Edit > Resize 'rootfs' partition
- eject and reinsert SD card4. create wpa_supplicant.conf and connect via SSH (find raspi's ip with nmap)
```bash
# create wifi network file with the following information
echo '
country=us
update_config=1
ctrl_interface=/var/run/wpa_supplicantnetwork={
ssid="YOUR_NETWORK_NAME"
psk="YOUR_PASSWORD"
scan_ssid=1
key_mgmt=WPA-PSK
}
' > /media/lorenz/bootfs/wpa_supplicant.conf# to enable ssh add file ssh in boot partition
touch /media/lorenz/bootfs/ssh
```5. install everything: log via ssh into raspberry and execute the following commands
```bash
git clone https://github.com/kapsner/raspi-midi-usb-hub
cd raspi-midi-usb-hub
./install.sh
```To manually update all MIDI-devices, run `./update.sh`