Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
larm-astro
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Inès EL HADRI
larm-astro
Commits
da563285
Commit
da563285
authored
Dec 19, 2023
by
Inès EL HADRI
💤
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add gitignore and fichier tuto bot python
parent
b5a7867f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
0 deletions
+50
-0
.gitignore
.gitignore
+1
-0
tuto_move.py
tuto_move.py
+49
-0
No files found.
.gitignore
0 → 100644
View file @
da563285
/.env
tuto_move.py
0 → 100644
View file @
da563285
import
rclpy
# core ROS2 client python librairie
from
rclpy.node
import
Node
# To manipulate ROS Nodes
from
geometry_msgs.msg
import
Twist
# Message to publish:
print
(
"tuto_move :: START..."
)
def
main
():
rclpy
.
init
()
# Initialize ROS2 client
myNode
=
Node
(
'move_node'
)
# Create a Node, with a name
# Initialize a publisher:
velocity_publisher
=
myNode
.
create_publisher
(
Twist
,
'/multi/cmd_nav'
,
10
)
# Start the ros infinit loop with myNode.
while
True
:
rclpy
.
spin_once
(
myNode
,
timeout_sec
=
0.1
)
print
(
"Running..."
)
# Publish a msg
velo
=
Twist
()
velo
.
linear
.
x
=
0.2
# meter per second
velo
.
angular
.
z
=
0.5
# radians per second
velocity_publisher
.
publish
(
velo
)
# At the end, destroy the node explicitly.
move
.
destroy_node
()
# and shut the light down.
rclpy
.
shutdown
()
print
(
"tuto_move :: STOP."
)
# activate main() function,
# if the file is executed as a script (ie. not imported).
if
__name__
==
'__main__'
:
# call main() function
main
()
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment