An open-source Linux alternative to RODE Central for the RODECaster Pro II.
- Configure virtual audio devices
- Manage SMART Pads (soundpads) - upload/download sounds
- Read/write device settings
- Monitor fader positions and meters
Early Development - Currently reverse engineering the USB HID protocol.
- Vendor ID:
0x19f7(RODE Microphones) - Product ID:
0x0030(RODECaster Pro II) - HID Interface:
/dev/hidraw* - Firmware version reported: 1.68
- Python 3.10+
hidapilibrary- udev rules for non-root access
# Install udev rules
sudo cp udev/99-rodecaster.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules
sudo udevadm trigger
# Install Python dependencies
pip install hidapi
# Reconnect RODECaster or rebootSee docs/protocol.md for reverse-engineered protocol details.
This project needs help with:
- Capturing USB traffic from RODE Central on Windows
- Decoding HID report descriptors
- Testing on different firmware versions
- rodecaster-pro2-pipewire - PipeWire audio configuration
MIT