# Sensor/Topic Debugging

The uORB is an asynchronous `publish()` / `subscribe()` messaging API used for inter-thread/inter-process communication. The `listener` command can be used from the *QGroundControl MAVLink Console* to inspect topic (message) values, including the current values published by sensors.

:::tip This is a powerful debugging tool because it can be used even when QGC is connected over a wireless link (e.g. when the vehicle is flying). :::

:::note The `listener` command is also available through the [System Console](https://px4.gitbook.io/px4-user-guide/development/debug/consoles/system_console) and the [MAVLink Shell](https://px4.gitbook.io/px4-user-guide/development/debug/consoles/mavlink_shell). :::

:::tip To check what topics are available at what rate, just use the `uorb top` command. :::

The image below demonstrates *QGroundControl* being used to get the value of the acceleration sensor.

![QGC MAVLink Console](https://4155462212-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LArEa7z2SPawfl3HpCD%2Fuploads%2Fgit-blob-7ed1a3da1cf15fe8ad469e2af2cd1d867c8acb70%2Fqgc_mavlink_console_listener_command.png?alt=media)

For more information about how to determine what topics are available and how to call `listener` see: [uORB Messaging > Listing Topics and Listening in](https://px4.gitbook.io/px4-user-guide/middleware/uorb#listing-topics-and-listening-in).
