Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ find_package(catkin REQUIRED COMPONENTS
add_message_files(DIRECTORY msg
FILES
cone_msg.msg
mur_drive_cmd.msg
)

generate_messages(
Expand Down
5 changes: 5 additions & 0 deletions msg/mur_drive_cmd.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Header header
# Straightline velocity
float32 vel
# angular velocity
float32 omega
8 changes: 8 additions & 0 deletions src/state_machine.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include "state_machine.h"


void main()
{

}
}
31 changes: 31 additions & 0 deletions src/state_machine.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#ifndef STATE_MACHINE_H
#define STATE_MACHINE_H
#include "ros.h"


class mur_state
{
private:
// States that this node will track
bool perceptionReady;
bool slamReady;
bool localReady;
bool lidarReady;
bool camReady;



public:
mur_state(/* args */);
~mur_state();
};

mur_state::mur_state(/* args */)
{
}

mur_state::~mur_state()
{
}

#endif