add tracker id to message
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
int32 id
|
||||||
int64 x_pos
|
int64 x_pos
|
||||||
int64 y_pos
|
int64 y_pos
|
||||||
int64 z_pos
|
int64 z_pos
|
||||||
|
|||||||
@@ -84,6 +84,18 @@ public:
|
|||||||
publisher_->publish(msg);
|
publisher_->publish(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void set_tracker_id(int id)
|
||||||
|
{
|
||||||
|
if (id >= 0) {
|
||||||
|
tracker_id = id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void get_tracker_id()
|
||||||
|
{
|
||||||
|
return tracker_id;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void timer_callback()
|
void timer_callback()
|
||||||
|
|
||||||
@@ -96,6 +108,7 @@ private:
|
|||||||
|
|
||||||
rclcpp::TimerBase::SharedPtr timer_; // timer to trigger the
|
rclcpp::TimerBase::SharedPtr timer_; // timer to trigger the
|
||||||
rclcpp::Publisher<beacon_positioning::msg::TrackerPosition>::SharedPtr publisher_; // pointer to publisher object
|
rclcpp::Publisher<beacon_positioning::msg::TrackerPosition>::SharedPtr publisher_; // pointer to publisher object
|
||||||
|
int tracker_id;
|
||||||
|
|
||||||
// terabee tower evo variables
|
// terabee tower evo variables
|
||||||
std::shared_ptr<terabee::serial_communication::ISerial> serial_port; // serial port for communicating with tracker
|
std::shared_ptr<terabee::serial_communication::ISerial> serial_port; // serial port for communicating with tracker
|
||||||
@@ -119,10 +132,12 @@ int main(int argc, char **argv)
|
|||||||
if (node->get_parameter("tracker_serial_port").as_string().compare(TRACKER_0_PORT))
|
if (node->get_parameter("tracker_serial_port").as_string().compare(TRACKER_0_PORT))
|
||||||
{
|
{
|
||||||
RCLCPP_INFO(node->get_logger(),"Configuring RTLS device for tracker 0");
|
RCLCPP_INFO(node->get_logger(),"Configuring RTLS device for tracker 0");
|
||||||
|
node->set_tracker_id(0);
|
||||||
node->setup_rtlsdevice(&rtls_device, 0, 0, 50, 0, true);
|
node->setup_rtlsdevice(&rtls_device, 0, 0, 50, 0, true);
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
RCLCPP_INFO(node->get_logger(),"Configuring RTLS device for tracker 1");
|
RCLCPP_INFO(node->get_logger(),"Configuring RTLS device for tracker 1");
|
||||||
|
node->set_tracker_id(1);
|
||||||
node->setup_rtlsdevice(&rtls_device, 1, 1, 50, 0, true);
|
node->setup_rtlsdevice(&rtls_device, 1, 1, 50, 0, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -137,6 +152,7 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
RCLCPP_INFO(node->get_logger(), "");
|
RCLCPP_INFO(node->get_logger(), "");
|
||||||
auto message = beacon_positioning::msg::TrackerPosition();
|
auto message = beacon_positioning::msg::TrackerPosition();
|
||||||
|
message.id = node->get_tracker_id();
|
||||||
message.x_pos = tracker_msg.tracker_position_xyz.at(0);
|
message.x_pos = tracker_msg.tracker_position_xyz.at(0);
|
||||||
message.y_pos = tracker_msg.tracker_position_xyz.at(1);
|
message.y_pos = tracker_msg.tracker_position_xyz.at(1);
|
||||||
message.z_pos = tracker_msg.tracker_position_xyz.at(2);
|
message.z_pos = tracker_msg.tracker_position_xyz.at(2);
|
||||||
|
|||||||
Reference in New Issue
Block a user