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
f05c5cfd
Commit
f05c5cfd
authored
Jan 16, 2024
by
Inès EL HADRI
💤
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Arrêt du robot sur appui d'un des boutons
parent
bbb0d0ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
+20
-2
reactive_move
grp_astro/src/reactive_move
+20
-2
No files found.
grp_astro/src/reactive_move
View file @
f05c5cfd
...
@@ -6,7 +6,7 @@ import rclpy
...
@@ -6,7 +6,7 @@ import rclpy
import
math
as
m
import
math
as
m
from
rclpy.node
import
Node
from
rclpy.node
import
Node
from
sensor_msgs.msg
import
PointCloud2
from
sensor_msgs.msg
import
PointCloud2
from
kobuki_ros_interfaces.msg
import
WheelDropEvent
from
kobuki_ros_interfaces.msg
import
WheelDropEvent
,
ButtonEvent
from
geometry_msgs.msg
import
Twist
from
geometry_msgs.msg
import
Twist
import
sensor_msgs_py.point_cloud2
import
sensor_msgs_py.point_cloud2
import
time
import
time
...
@@ -40,6 +40,7 @@ class ReactiveMove(Node):
...
@@ -40,6 +40,7 @@ class ReactiveMove(Node):
# Initialize subscribers
# Initialize subscribers
self
.
create_subscription
(
PointCloud2
,
'/scan_points'
,
self
.
scan_callback
,
10
)
self
.
create_subscription
(
PointCloud2
,
'/scan_points'
,
self
.
scan_callback
,
10
)
self
.
create_subscription
(
WheelDropEvent
,
'/events/wheel_drop'
,
self
.
wheel_callback
,
10
)
self
.
create_subscription
(
WheelDropEvent
,
'/events/wheel_drop'
,
self
.
wheel_callback
,
10
)
self
.
create_subscription
(
ButtonEvent
,
'/events/button'
,
self
.
btn_callback
,
10
)
# Initialize a publisher
# Initialize a publisher
self
.
_velocity_publisher
=
self
.
create_publisher
(
Twist
,
'cmd_vel'
,
10
)
self
.
_velocity_publisher
=
self
.
create_publisher
(
Twist
,
'cmd_vel'
,
10
)
...
@@ -52,8 +53,10 @@ class ReactiveMove(Node):
...
@@ -52,8 +53,10 @@ class ReactiveMove(Node):
self
.
_previousScanTime
=
None
self
.
_previousScanTime
=
None
self
.
_points
=
[]
self
.
_points
=
[]
self
.
_firstPointSeen
=
None
self
.
_firstPointSeen
=
None
## Sécurité
self
.
_leftWheelDropped
=
False
self
.
_leftWheelDropped
=
False
self
.
_rightWheelDropped
=
False
self
.
_rightWheelDropped
=
False
self
.
_canMove
=
True
...
@@ -74,6 +77,15 @@ class ReactiveMove(Node):
...
@@ -74,6 +77,15 @@ class ReactiveMove(Node):
else
:
else
:
self
.
_rightWheelDropped
=
msg
.
state
==
msg
.
DROPPED
self
.
_rightWheelDropped
=
msg
.
state
==
msg
.
DROPPED
def
btn_callback
(
self
,
msg
):
"""
Toggle robot movement when pressing any of the btns
"""
print
(
msg
)
if
(
msg
.
state
==
msg
.
PRESSED
):
self
.
_canMove
=
not
self
.
_canMove
print
(
"pressed"
)
def
calcul_velo
(
self
):
def
calcul_velo
(
self
):
"""
"""
...
@@ -94,6 +106,13 @@ class ReactiveMove(Node):
...
@@ -94,6 +106,13 @@ class ReactiveMove(Node):
return
Twist
()
# Return a zero velocity
return
Twist
()
# Return a zero velocity
# If stop btn was pressed
if
not
self
.
_canMove
:
print
(
"The robot is stopped"
)
return
Twist
()
# Return a zero velocity
# Default case
# Default case
x
,
y
=
firstPointInFront
(
self
.
_points
,
self
.
paramDouble
(
'RECT_LENGTH'
),
self
.
paramDouble
(
'RECT_WIDTH'
)
/
2.0
)
x
,
y
=
firstPointInFront
(
self
.
_points
,
self
.
paramDouble
(
'RECT_LENGTH'
),
self
.
paramDouble
(
'RECT_WIDTH'
)
/
2.0
)
...
@@ -141,7 +160,6 @@ class ReactiveMove(Node):
...
@@ -141,7 +160,6 @@ class ReactiveMove(Node):
velocity
=
self
.
calcul_velo
()
velocity
=
self
.
calcul_velo
()
print
(
self
.
paramDouble
(
'LINEAR_VELOCITY'
))
self
.
_velocity_publisher
.
publish
(
velocity
)
# Move according to previously calculated velocity
self
.
_velocity_publisher
.
publish
(
velocity
)
# Move according to previously calculated velocity
...
...
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