2019-03-21 00:14:59 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-03-21 00:14:59 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, diagnostic-msgs, python-qt-binding, pythonPackages, qt-gui, qt-gui-py-common, rospy, rqt-bag, rqt-gui, rqt-gui-py, rqt-py-common }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-rqt-robot-monitor";
|
2019-08-03 13:30:09 -04:00
|
|
|
version = "0.5.9-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/ros-gbp/rqt_robot_monitor-release/archive/release/melodic/rqt_robot_monitor/0.5.9-1.tar.gz";
|
|
|
|
name = "0.5.9-1.tar.gz";
|
2019-08-03 13:30:09 -04:00
|
|
|
sha256 = "30aa7f05721a5d681de9c27d5b5de3c68d719bdbc2a72748ef2166c972e4e055";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ diagnostic-msgs python-qt-binding pythonPackages.rospkg qt-gui qt-gui-py-common rospy rqt-bag rqt-gui rqt-gui-py rqt-py-common ];
|
2019-03-21 00:14:59 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''rqt_robot_monitor displays diagnostics_agg topics messages that
|
|
|
|
are published by <a href="http://www.ros.org/wiki/diagnostic_aggregator">diagnostic_aggregator</a>.
|
|
|
|
rqt_robot_monitor is a direct port to rqt of
|
|
|
|
<a href="http://www.ros.org/wiki/robot_monitor">robot_monitor</a>. All
|
|
|
|
diagnostics are fall into one of three tree panes depending on the status of
|
|
|
|
diagnostics (normal, warning, error/stale). Status are shown in trees to
|
|
|
|
represent their hierarchy. Worse status dominates the higher level status.<br/>
|
|
|
|
<ul>
|
|
|
|
Ex. 'Computer' category has 3 sub devices. 2 are green but 1 is error. Then
|
|
|
|
'Computer' becomes error.
|
|
|
|
</ul>
|
|
|
|
You can look at the detail of each status by double-clicking the tree nodes.<br/>
|
|
|
|
|
|
|
|
Currently re-usable API to other pkgs are not explicitly provided.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|