# kortex **Repository Path**: itfanr/kortex ## Basic Information - **Project Name**: kortex - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-20 - **Last Updated**: 2024-06-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

KINOVA® KORTEX™ API Reference

# Description The official repository contains documentation and examples explaining how to use the KINOVA® KORTEX™ API client with C++ or Python. The repository has been tested on Windows 10, Ubuntu 16.04, Ubuntu 18.04 and Ubuntu 20.04.

Table of Contents

- [Description](#description) - [Licensing](#licensing) - [Role of Google Protocol Buffer in Kortex API](#role-of-google-protocol-buffer-in-kortex-api) - [Quick Start for C++ users](#quick-start-for-c-users) - [Quick Start for Python users](#quick-start-for-python-users) - [Quick Start for modbus users](#quick-start-for-modbus-users) - [Download links](#download-links) - [Build and Run instructions](#build-and-run-instructions) - [Reference](#reference) - [Useful Links](#useful-links) # Licensing This repository is licenced under the [BSD 3-Clause "Revised" License](./LICENSE) # Role of Google Protocol Buffer in Kortex API The Kortex API uses Google Protocol Buffer message objects**[1](#useful-links)** to exchange data between client and server. Google Protocol Buffer offers structured data objects with standard methods for each member field: + structured, nested objects + basic types and collections + getter/setter methods on basic types + iterators, dimension and appending methods on collections + many helpers (e.g. serialize/deserialize, I/O functions) When using the Kortex API a developer will need to understand the Google Protocol Buffer feature set to maximize their efficiency. ## Quick Start for C++ users The following links provide some helpful guidance for C++ developer. You will find information about Kortex mechanism and some code examples. + [API mechanism](./linked_md/cpp_api_mechanism.md) + [Transport / Router / Session / Notification](./linked_md/cpp_transport_router_session_notif.md) + [Device routing](./linked_md/cpp_device_routing.md) + [Servoing modes](./linked_md/cpp_servoing_modes.md) + [Error management](./linked_md/cpp_error_management.md) + [Examples](./api_cpp/examples/readme.md) ## Quick Start for Python users To run the Python examples you will need to install the Python interpreter and the pip installation module. Note that for C++ developers it could be useful to install the Python Kortex API to allow for quick tests and validations. Here is some general information about the Python interpreter and the pip module manager. - [Python General Information](./linked_md/python_quick_start.md) - [API mechanism](./linked_md/python_api_mechanism.md) - [Transport / Router / Session / Notification](./linked_md/python_transport_router_session_notif.md) - [Device routing](./linked_md/python_device_routing.md) - [Servoing modes](./linked_md/python_servoing_modes.md) - [Error management](./linked_md/python_error_management.md) - [Examples](./api_python/examples/readme.md) ## Quick Start for modbus users Since release 2.3.0, the Kortex API offers a modbus interface to communicate with the robot. All the data is formatted according to this: - byte order: Big endian - word order: Little endian - [Modbus ICD](./linked_md/modbus_icd.md) - [Modbus examples](./modbus/examples/readme.md) # Download links The latest download links for each arm type are reported in the table below: | Arm type | Firmware | Release notes | API | | :------------- | :----------: | :-----------: | :-----------:| | Gen3 | [2.5.2](https://artifactory.kinovaapps.com:443/artifactory/generic-public/kortex/gen3/2.5.2/Gen3-2.5.2.swu) | [2.5.2](https://artifactory.kinovaapps.com:443/artifactory/generic-public/Documentation/Gen3/Technical%20documentation/Release%20notes/EN-eRN-001-Gen3-Ultralight-release-notes.pdf) | [2.6.0](https://artifactory.kinovaapps.com/ui/repos/tree/General/generic-public/kortex/API/2.6.0)| | Gen3 lite | [2.3.2](https://artifactory.kinovaapps.com:443/artifactory/generic-public/kortex/gen3Lite/2.3.2/Gen3-lite-2.3.2.swu) | [2.3.2](https://artifactory.kinovaapps.com:443/artifactory/generic-public/Documentation/Gen3%20lite/Technical%20documentation/Release%20Notes/Gen3_lite_Release_Notes_2_3_2%20-%20R01.pdf) | [2.3.0](https://artifactory.kinovaapps.com/ui/repos/tree/General/generic-public/kortex/API/2.3.0)| When following the link to Artifactory, to download the correct C++ API, you have to select the package for your architecture on the left-hand side tree view and then click Download on the right-hand side: ![Artifactory](./linked_md/artifactory.png)
Previous releases

# Build and Run instructions [C++ API](./api_cpp/examples/readme.md) [Python API](./api_python/examples/readme.md) # Reference #### Useful Links | | | | ---: | --- | | Kinova home page: | [https://www.kinovarobotics.com](https://www.kinovarobotics.com)| | Google Protocol Buffers home page: | [https://developers.google.com/protocol-buffers](https://developers.google.com/protocol-buffers) |