Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add page for persistent alerts #2711

Merged
merged 6 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Binary file added source/docs/software/telemetry/images/alerts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions source/docs/software/telemetry/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

telemetry.rst
robot-telemetry-with-annotations.rst
persistent-alerts.rst
robot-telemetry-with-sendable.rst
datalog.rst
datalog-download.rst
Expand Down
55 changes: 55 additions & 0 deletions source/docs/software/telemetry/persistent-alerts.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Recording Faults with Persistent Alerts

Robots encounter a variety of fault conditions: disconnected sensors/motors, invalid mechanism states, initialization failures, etc. While the FRC Driver Station provides a :ref:`console interface <docs/software/driverstation/driver-station:Messages Tab>` for instantaneous alerts, the risk of missing important messages makes it poorly suited to communicate faults that persistent over time.
jwbonner marked this conversation as resolved.
Show resolved Hide resolved

Instead, WPILib provides an API for managing persistent alerts published via Network Tables. Alerts are assigned a priority (*error*, *warning*, or *info*) and can be *activated* or *deactivated* in robot code. The set of active alerts can be displayed on a dashboard, as shown below in Shuffleboard.
jwbonner marked this conversation as resolved.
Show resolved Hide resolved

.. image:: images/alerts.png
:alt: A screenshot of the alerts widget in Shuffleboard, with several active alerts.

Active alerts are automatically displayed in order based on priority and how recently they were activated, with newer and more critical alerts at the top of the list. This provides a mechanism for drivers (on the field) and programmers (off the field) to quickly assess the state of the robot and determine whether it is in a "match-ready" state. Highly descriptive alerts also allow drive teams to adapt to faults in real time, such as switching strategies in case of a subsystem failure.

## API Usage

Alerts are created and managed using the ``Alert`` class. Typically, an alert should be instantiated once and stored as a class member. Periodically, the ``set`` method should be called to update the state of the alert based on relevant data.
jwbonner marked this conversation as resolved.
Show resolved Hide resolved

.. tab-set-code::
.. code-block:: java

class Robot {
Alert alert = new Alert("Something went wrong", AlertType.kWarning);

periodic() {
alert.set(...);
}
}

.. code-block:: c++

class Robot {
frc::Alert alert{"Something went wrong", frc::Alert::AlertType::kWarning};
}

Robot::periodic() {
alert.Set(...);
}

.. code-block:: python

self.alert = Alert("Something went wrong", AlertType.kWarning)

def periodic() {
self.alert.set(...)
}

.. note:: Suggested usage of each alert type (error, warning, or info) is provided in the enum API documentation.

The text description of an alert can be updated after the alert has been created by calling ``setText``, allowing additional information to be provided inline. For example, an alert indicating that a motor is overheating could include the motor's current temperature.

Optionally, a group name can also be provided to the ``Alert`` constructor. Alerts are published to Network Tables using this name, allowing multiple sets of alerts to be displayed on separate widgets (such as "Auto" and "Teleop" alert sets). If the group name is omitted, the alert is published to a group called "Alerts".

## Dashboard Usage

Alerts are published to Network Tables using the key ``/SmartDashboard/<Group Name>``. Shuffleboard automatically populates data from this table to the "SmartDashboard" tab, or the widget can be manually created by dragging the alert table from the Network Tables tree to the main view as described :ref:`here <docs/software/dashboards/shuffleboard/getting-started/shuffleboard-displaying-data:Displaying data from your robot>`.

.. note:: In addition to Shuffleboard, the alerts API is supported by many third-party dashboards. Check the documentation of your preferred dashboard for details.