FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docking/src/planner_node.cpp at master · rwbot/docking · GitHub
rwbot
/
docking
Public
Notifications
You must be signed in to change notification settings
Fork
18
Star
30
Code
Issues
9
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
docking
/
src
/
planner_node.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (27 loc) · 726 Bytes
Breadcrumbs
docking
/
src
/
planner_node.cpp
Copy path
File metadata and controls
37 lines (27 loc) · 726 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
include
<
docking/Headers.h
>
#
include
<
docking/PlannerNode.h
>
#
include
<
ros/ros.h
>
//
Topics
//
static const std::string DOCK_FRAME = "dock_truth";
//
static const std::string PUBLISH_TOPIC = "/dockLines";
//
geometry_msgs::PoseStamped targetPose;
int
main
(
int
argc,
char
**argv)
{
ROS_INFO_STREAM
(
"
INITIALIZING PLANNER NODE
"
);
//
Initialize the ROS Node "line_detection_node"
ros::init
(argc, argv,
"
planner
"
);
ros::NodeHandle nh;
//
ros::NodeHandle nh("");
//
ros::NodeHandle nh("~");
PlannerNode *plannerNode =
new
PlannerNode
(nh);
ros::Rate
rate
(
1
);
//
Spin
while
(
ros::ok
())
{
//
ros::spin();
ros::spinOnce
();
rate.
sleep
();
}
//
Success
return
0
;
}
Back
|
FazBrowse Home
|
New Git URL