Official SDK, drivers, and tools for ProHand and ProGlove robotic hands.
Current Version: v1.0.0-rc
This repository uses a flat structure where the SDK is unpacked (not zipped) for easy browsing and use.
pro-sdk/
├── README.md This file
├── INDEX.md Release information
├── MANIFEST.txt Checksums and file details
├── sdk/ SDK source code (unpacked)
│ ├── prohand_sdk/ ProHand SDK (C++, Python)
│ ├── proglove_sdk/ ProGlove SDK (C++, Python)
│ ├── demo/ Example applications
│ └── docs/ Documentation
├── driver/ Platform-specific driver binaries (tarballs)
│ ├── prohand-driver-v1.0.0-rc-macos-arm64.tar.gz
│ ├── prohand-driver-v1.0.0-rc-linux-arm64.tar.gz
│ └── prohand-driver-v1.0.0-rc-linux-x64.tar.gz
├── firmware/ ESP32 firmware binaries (unpacked)
│ ├── ProHand-fw-esp-L-v1.0.0-rc-*-ota.bin
│ └── ProHand-fw-esp-R-v1.0.0-rc-*-ota.bin
└── app/ macOS diagnostic application
└── ProHand Diagnostic v1.0.0-rc.dmg
The SDK is provided as unpacked source code. Simply clone and use:
git clone https://github.com/proception/pro-sdk.git
cd pro-sdk/sdk
# Python example
cd prohand_sdk/python
python3 example.py
# C++ example
cd prohand_sdk/cpp
# See README for build instructionsDownload the appropriate driver package for your platform:
# Example: macOS ARM64
tar -xzf driver/prohand-driver-v1.0.0-rc-macos-arm64.tar.gz
./prohand-headless-ipc-host --helpAvailable platforms:
macos-arm64- macOS Apple Silicon (M1/M2/M3/M4)linux-arm64- Linux ARM64 (Jetson Orin, ARM servers)linux-x64- Linux x64 (Intel/AMD)
Double-click the DMG file to install the ProHand Diagnostic application.
Use the ProHand Diagnostic application to flash the firmware to the device.
This repository uses git tags for versioning:
# List all versions
git tag -l
# Checkout specific version
git checkout v1.0.0-rc| Platform | SDK | Drivers | App |
|---|---|---|---|
| macOS ARM64 (M-series) | ✓ | ✓ | ✓ |
| macOS x64 (Intel) | ✓ | - | - |
| Linux ARM64 (Jetson) | ✓ | ✓ | - |
| Linux x64 | ✓ | ✓ | - |
- Issues: https://github.com/proception/pro-sdk/issues
- Email: contact@proception.ai
- Documentation: See
sdk/docs/
See LICENSE for details.