Current Release: ${SDK_VERSION}
Release Date: $(date +"%Y-%m-%d")
- SDK Version: ${SDK_VERSION}
- Firmware Version: ${FW_VERSION}
- macOS App Version: ${APP_VERSION}
The SDK is provided as unpacked source code and libraries, not as a tarball. This allows for:
- Easy browsing on GitHub
- Direct cloning and use
- Better git diff viewing
Includes:
- `sdk/prohand_sdk/` - ProHand SDK (C++, Python)
- `sdk/proglove_sdk/` - ProGlove SDK (C++, Python)
- `sdk/demo/` - Example applications
- `sdk/docs/` - Documentation
- `driver/macos-arm64/` - macOS Apple Silicon
- `driver/linux-arm64/` - Linux ARM64 (Jetson, etc.)
- `driver/linux-x64/` - Linux x64 (Intel/AMD)
- `prohand-driver-${SDK_VERSION}-macos-arm64.tar.gz` - macOS Apple Silicon
- `prohand-driver-${SDK_VERSION}-linux-arm64.tar.gz` - Linux ARM64 (Jetson, etc.)
- `prohand-driver-${SDK_VERSION}-linux-x64.tar.gz` - Linux x64 (Intel/AMD)
Included in each driver package:
- `prohand-headless-ipc-host` - ProHand IPC host driver
- `proglove-headless-ipc-host` - ProGlove IPC host driver
- `ProHand-fw-esp-L-*-ota.bin` - Left hand OTA firmware
- `ProHand-fw-esp-R-*-ota.bin` - Right hand OTA firmware
- `ProHand Diagnostic ${APP_VERSION}.dmg` - Diagnostic and configuration tool
Since the SDK is unpacked, you can use it directly:
```bash
git clone https://github.com/proception/pro-sdk.git cd pro-sdk
cd sdk/prohand_sdk/python python3 example.py
cd sdk/prohand_sdk/cpp
```
Download and extract the driver package for your platform:
```bash
wget https://github.com/proception/pro-sdk/releases/download/${SDK_VERSION}/prohand-driver-${SDK_VERSION}-macos-arm64.tar.gz tar -xzf prohand-driver-${SDK_VERSION}-macos-arm64.tar.gz ./prohand-headless-ipc-host --help ```
Version management is handled via git tags. To see all releases: ```bash git tag -l ```
To checkout a specific version: ```bash git checkout ${SDK_VERSION} ```
See MANIFEST.txt for checksums and detailed file information.
For documentation and support:
- SDK Documentation: See `sdk/docs/`
- Issues: https://github.com/proception/pro-sdk/issues
- Email: support@proception.ai