ros2_tui 0.1.5

A Terminal User Interface (TUI) for monitoring and managing ROS2 topics and parameters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod abstract_tree;
pub mod debug;
pub mod param_tree;
pub mod popup;
pub mod topic_tree;
pub mod tree;

// Current exports for compatibility
pub use debug::*;
pub use param_tree::{ParamTree, ParamTreeItem};
pub use popup::*;
pub use tree::*;

// Future extensible tree structures are available as:
// - abstract_tree::* for the generic tree framework
// - topic_tree::* for topic-specific trees
// - param_tree::* for parameter-specific trees