All Projects → rclex → rclex

rclex / rclex

Licence: Apache-2.0 license
Rclex: ROS 2 Client Library for Elixir

Programming Languages

elixir
2628 projects
c
50402 projects - #5 most used programming language
shell
77523 projects
Makefile
30231 projects

Projects that are alternatives of or similar to rclex

ros-gst-bridge
a bidirectional ros to gstreamer bridge and utilities for dynamic pipelines
Stars: ✭ 46 (-40.26%)
Mutual labels:  ros, ros2
isaac ros visual odometry
Visual odometry package based on hardware-accelerated NVIDIA Elbrus library with world class quality and performance.
Stars: ✭ 101 (+31.17%)
Mutual labels:  ros, ros2
linorobot2
Autonomous mobile robots (2WD, 4WD, Mecanum Drive)
Stars: ✭ 97 (+25.97%)
Mutual labels:  ros, ros2
aztarna
aztarna, a footprinting tool for robots.
Stars: ✭ 85 (+10.39%)
Mutual labels:  ros, ros2
mros2
agent-less and lightweight communication library compatible with rclcpp for embedded devices
Stars: ✭ 72 (-6.49%)
Mutual labels:  pubsub, ros2
scout ros
This repository ROS package is suit for scout 2 and scout mini
Stars: ✭ 30 (-61.04%)
Mutual labels:  ros, ros2
ROS
ROS机器人操作系统 学习(写于2020年夏)
Stars: ✭ 102 (+32.47%)
Mutual labels:  ros, ros2
NuttX
Official micro-ROS RTOS
Stars: ✭ 63 (-18.18%)
Mutual labels:  ros, ros2
Awesome Robotic Tooling
Tooling for professional robotic development in C++ and Python with a touch of ROS, autonomous driving and aerospace.
Stars: ✭ 1,876 (+2336.36%)
Mutual labels:  ros, ros2
awesome-webots
Awesome Webots
Stars: ✭ 46 (-40.26%)
Mutual labels:  ros, ros2
aws-robomaker-robotics-curriculum
Introductory robotics curriculum
Stars: ✭ 78 (+1.3%)
Mutual labels:  ros, ros2
isaac ros apriltag
CUDA-accelerated Apriltag detection
Stars: ✭ 42 (-45.45%)
Mutual labels:  ros, ros2
trac ik
ROS 2 port of `trac_ik`, an alternative Inverse Kinematics solver to the popular inverse Jacobian methods in KDL.
Stars: ✭ 14 (-81.82%)
Mutual labels:  ros, ros2
astuff sensor msgs
A set of messages specific to each sensor supported by AutonomouStuff.
Stars: ✭ 37 (-51.95%)
Mutual labels:  ros, ros2
KRS
The Kria Robotics Stack (KRS) is a ROS 2 superset for industry, an integrated set of robot libraries and utilities to accelerate the development, maintenance and commercialization of industrial-grade robotic solutions while using adaptive computing.
Stars: ✭ 26 (-66.23%)
Mutual labels:  ros, ros2
drl grasping
Deep Reinforcement Learning for Robotic Grasping from Octrees
Stars: ✭ 160 (+107.79%)
Mutual labels:  ros, ros2
souls
SOULs 🔥 Build Serverless Apps faster like Rails. Powered by Ruby GraphQL, RBS/Steep, Active Record, RSpec, RuboCop, and Google Cloud.
Stars: ✭ 327 (+324.68%)
Mutual labels:  pubsub
skiros2
A skill-based platform for ROS v.2
Stars: ✭ 51 (-33.77%)
Mutual labels:  ros
Handeye-Calibration-ROS
🤖 Elaborated hand-eye calibration tutorials (ROS-binding)
Stars: ✭ 80 (+3.9%)
Mutual labels:  ros
simple redis
Simple and resilient redis client for rust.
Stars: ✭ 21 (-72.73%)
Mutual labels:  pubsub

Hex version API docs License ci-latest_push ci-allver_PR

日本語のREADME

Rclex

Rclex is a ROS 2 client library for Elixir.

This library lets you perform basic ROS 2 behaviors by calling out from Elixir code into the RCL (ROS Client Library) API, which uses the ROS 2 common hierarchy.

Additionally, publisher-subscriber (PubSub) communication between nodes and associated callback functions are executed by tasks, which are part of a lightweight process model. This enables generation of and communication between a large number of fault-tolerant nodes while suppressing memory load.

About ROS 2

ROS (Robot Operating System) is a next-generation Robot development framework. In both ROS and ROS 2, each functional unit is exposed as a node, and by combining these nodes you can create different robot applications. Additionally, communication between nodes uses a PubSub model where publisher and subscriber exchange information by specifying a common topic name.

The biggest difference between ROS and ROS 2 is that the DDS (Data Distribution Service) protocol was adopted for communication, and the library was divided in a hierarchical structure, allowing for the creation of ROS 2 client libraries in various languages. This has allowed for the creation of a robot application library in Elixir.

For details on ROS 2, see the official ROS 2 documentation.

Recommended Environment

Currently, we use the following environment as the development target:

  • Ubuntu 20.04.2 LTS (Focal Fossa)
  • ROS 2 Foxy Fitzroy
    • NOTE: Dashing Diademata on Ubuntu 18.04.5 LTS does not work well since v0.6.0 (we try to continue to support it, see #89)
  • Elixir 1.12.3-otp-24
  • Erlang/OTP 24.1.5

As an operation test, we check the communication with nodes implemented by rclcpp using rclex/rclex_connection_tests.

We also run CI in multiple different environments on GitHub Actions. However, please note that we cannot guarantee the operation of all of these versions due to our limited development resources.

The pre-built Docker images used in CI have published on Docker Hub. You can also try the power of Rclex with it easily.

Installation

rclex is available in Hex.

You can install this package into your project by adding rclex to your list of dependencies in mix.exs:

def deps do
  [
    {:rclex, "~> 0.7.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs.
You can find the docs at https://hexdocs.pm/rclex.

Usage

Currently, the Rclex API allows for the following:

  1. The ability to create a large number of publishers sending to the same topic.
  2. The ability to create large numbers of each combination of publishers, topics, and subscribers.

Please reference examples here. Also note the usage alongside the sample code.

Maintainers and developers (including past)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].