Skip to content

Commit 7dc7712

Browse files
committed
Rename package to dynamixel_test_ui
1 parent 62a72bd commit 7dc7712

File tree

13 files changed

+19
-20
lines changed

13 files changed

+19
-20
lines changed

coffee_ws/src/python_dynamixel_ui/README.md renamed to coffee_ws/src/dynamixel_test_ui/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Python Dynamixel UI
1+
# Dynamixel Test UI
22

3-
A ROS2 package for controlling and visualizing Dynamixel servos with a Python-based GUI.
3+
A ROS2 package for testing and debugging Dynamixel servos with a Python-based GUI.
44

55
## Virtual Environment Setup
66

@@ -54,11 +54,11 @@ After setting up your environment, build and run the package:
5454
```bash
5555
# Build the package
5656
cd /path/to/your/workspace
57-
colcon build --packages-select python_dynamixel_ui
57+
colcon build --packages-select dynamixel_test_ui
5858

5959
# Source the setup files
6060
source install/setup.bash
6161

6262
# Run the UI node
63-
ros2 run python_dynamixel_ui dynamixel_ui
63+
ros2 run dynamixel_test_ui dynamixel_ui
6464
```
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# This file makes the dynamixel_test_ui directory a Python package
2+
3+
from . import dynamixel_ui_node
4+
5+
6+

coffee_ws/src/python_dynamixel_ui/python_dynamixel_ui/dynamixel_ui_node.py renamed to coffee_ws/src/dynamixel_test_ui/dynamixel_test_ui/dynamixel_ui_node.py

File renamed without changes.

coffee_ws/src/python_dynamixel_ui/package.xml renamed to coffee_ws/src/dynamixel_test_ui/package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0"?>
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
4-
<name>python_dynamixel_ui</name>
4+
<name>dynamixel_test_ui</name>
55
<version>0.0.1</version>
6-
<description>UI for controlling Dynamixel motors</description>
6+
<description>UI for testing Dynamixel motors</description>
77
<maintainer email="[email protected]">user</maintainer>
88
<license>Apache License 2.0</license>
99

File renamed without changes.

coffee_ws/src/python_dynamixel_ui/resource/python_dynamixel_ui renamed to coffee_ws/src/dynamixel_test_ui/resource/dynamixel_test_ui

File renamed without changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[develop]
2+
script_dir=$base/lib/dynamixel_test_ui
3+
[install]
4+
install_scripts=$base/lib/dynamixel_test_ui

coffee_ws/src/python_dynamixel_ui/setup.py renamed to coffee_ws/src/dynamixel_test_ui/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
from glob import glob
44

5-
package_name = 'python_dynamixel_ui'
5+
package_name = 'dynamixel_test_ui'
66

77
setup(
88
name=package_name,
@@ -17,12 +17,12 @@
1717
zip_safe=True,
1818
maintainer='user',
1919
maintainer_email='[email protected]',
20-
description='UI for controlling Dynamixel motors',
20+
description='UI for testing Dynamixel motors',
2121
license='Apache License 2.0',
2222
tests_require=['pytest'],
2323
entry_points={
2424
'console_scripts': [
25-
'dynamixel_ui = python_dynamixel_ui.dynamixel_ui_node:main',
25+
'dynamixel_ui = dynamixel_test_ui.dynamixel_ui_node:main',
2626
],
2727
},
2828
)

coffee_ws/src/python_dynamixel_ui/test/test_copyright.py renamed to coffee_ws/src/dynamixel_test_ui/test/test_copyright.py

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)