A Python library for controlling HexDevice robots and devices
Reason this release was yanked:
Unexpected severe bug: The KCP communication in this version will fail when using IPv4.
Project description
Hex Device Python Library
Overview
This library provides a simple interface for communicating with and controlling Hex devices. It uses Protocol Buffers for message serialization and WebSocket for real-time communication. The supported hardware list is as follows:
- [✅] ChassisMaver
- [✅] ChassisMark2
- [✅] ChassisTriggerA3
- [✅] ArmArcher
- [✅] ArmSaber
- [✅] HandsHtGp100
- [-] hex_lift
Prerequisites
- Python 3.9 or higher
- Anaconda Distribution (recommended for beginners) - includes Python, NumPy, and commonly used scientific computing packages
Installation
Install from PyPI (Recommended)
pip install hex_device
Clone the Repository (Development)
git clone --recurse-submodules https://github.com/hexfellow/hex_device_python.git
Quickstart
If you have already installed the library from PyPI using pip, please refer to Usage
Install protoc
-
Install protoc from package manager (Recommended only for Debian13/Ubuntu24.04)
sudo apt install protobuf-compiler
-
Install protoc from Github Releases (Recommended Ubuntu22.04 and below)
Just choose a suitable version and install it. Here below is an example of installing
protoc-27.1.# For Linux x86_64 wget https://github.com/protocolbuffers/protobuf/releases/download/v27.1/protoc-27.1-linux-x86_64.zip sudo unzip protoc-27.1-linux-x86_64.zip -d /usr/local rm protoc-27.1-linux-x86_64.zip # For Linux arm64 wget https://github.com/protocolbuffers/protobuf/releases/download/v27.1/protoc-27.1-linux-aarch_64.zip sudo unzip protoc-27.1-linux-aarch_64.zip -d /usr/local rm protoc-27.1-linux-aarch_64.zip # Verify installation protoc --version # Should be or more than 3.21.12
Install hex_device
Compile Protocol Buffer messages:
mkdir ./hex_device/generated
protoc --proto_path=proto-public-api --python_out=hex_device/generated proto-public-api/*.proto
Option 1: Package Installation
To install the library in your Python environment:
python3 -m pip install .
Option 2: Direct Usage (No Installation)
If you prefer to run the library without installing it in your Python environment:
-
Install dependencies:
python3 -m pip install -r requirements.txt
-
Add the library path to your script:
import sys sys.path.insert(1, '<your project path>/hex_device_python') sys.path.insert(1, '<your project path>/hex_device_python/hex_device/generated')
Usage
The complete function interfaces can be found in our wiki.
-
A simple demo for all device: tests/main.py
-
Example of robotic arm trajectory tracking: tests/archer_traj_test.py or tests/saber7dof_traj_test.py
Example:
python3 tests/main.py --url ws://0.0.0.0:8439
or use ipv6:
python3 tests/main.py --url ws://[fe80::500d:96ff:fee1:d60b%3]:8439
Q&A
Why did a previously working software package stop working after a redeployment?
- Please check the Change log to see if you are using cross-version software packages
If I want to use newer software packages, how do I perform hardware upgrades?
- Please contact our after-sales service, and we will provide hardware upgrade instructions based on the equipment you purchased
Copyright © 2025-present Hexfellow Org
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hex_device-1.3.6.tar.gz.
File metadata
- Download URL: hex_device-1.3.6.tar.gz
- Upload date:
- Size: 73.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7257204a1b62ca8dc7117ac7c770fc43638e9ae8613a4817133f4b7f8791c3c
|
|
| MD5 |
6443f01dae383b127cf740a9973ec5e1
|
|
| BLAKE2b-256 |
09888cccf00d4b1b44c418574bc9a63775d1f4e77cec81f059a0dce61f3d9416
|
File details
Details for the file hex_device-1.3.6-py3-none-any.whl.
File metadata
- Download URL: hex_device-1.3.6-py3-none-any.whl
- Upload date:
- Size: 69.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f9fb4bf8d4c2d5375b47d87cf98ab7230b31e11a115806ca61443fcfec5b952
|
|
| MD5 |
a286aaf64eeb2952701a1c2823276cca
|
|
| BLAKE2b-256 |
a88409f2ad304fd0a2a1a0b23de8cc02c5ae24f7d06cf771a647a3f748556787
|