2022-11-04 19:29:56 -04:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-11-04 19:29:56 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, dynamixel-workbench-toolbox }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-dynamixel-workbench";
|
|
|
|
version = "2.2.3-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/dynamixel_workbench-release/archive/release/humble/dynamixel_workbench/2.2.3-1.tar.gz";
|
|
|
|
name = "2.2.3-1.tar.gz";
|
|
|
|
sha256 = "149f8fce05e435676882dc47d4cbfdaa916b7d760cdca327e082a06e066514d7";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ dynamixel-workbench-toolbox ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Dynamixel-Workbench is dynamixel solution for ROS.
|
|
|
|
This metapackage allows you to easily change the ID, baudrate and operating mode of the Dynamixel.
|
|
|
|
Furthermore, it supports various controllers based on operating mode and Dynamixel SDK.
|
|
|
|
These controllers are commanded by operators.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|