> For the complete documentation index, see [llms.txt](https://docs.sevenpens.com/drawtab/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sevenpens.com/drawtab/guides/advanced/tablet-reports.md).

# Tablet reports

## Overview

Somewhere between 100 and 300 times a second, your tablet sends a "package" of data to your computer. This package is called a "tablet report" or just "report." The tablet driver, operating system, and application may modify that data. A drawing application then uses that data to draw a stroke.

## Report rate

You can see this often in the specifications for a tablet as "report rate". Here is an example.

<figure><img src="/files/fixFbCZXIvUUL9Acu4uv" alt="" width="375"><figcaption></figcaption></figure>

"RPS" means "Reports per second"

Because this is a value per second, some literature uses the unit Hz. So, for example, instead of "200 RPS" you might see "200 Hz."

## Report contents

The exact format of the data varies depending on the tablet. But conceptually the report will include data like this:

* The x,y **position** of the pen
* The **pressure** reading. 0 = no pressure or some positive integer if there is pressure
* The **tilt** - composed of two values. Either given as an x tilt and y tilt or as altitude angle and azimuth angle.
* The **button** press status

The report contains other interesting things, but these are the critical ones for drawing strokes.

## Higher report rates

### The current state of the art

As of Jan 2025, the highest report rates stated for a tablet are 300Hz. Even the leading brand, Wacom, only supports a maximum of 220Hz. Numbers in the 200Hz to 300Hz are surprising when we see mice that have report rate of 1000Hz.

### Is there a hardware limitation?

No. As far as I know there is no clear hardware or system limitation.

### Why don't we see higher report rates?

I believe the reason is simple: the typical customer for a drawing tablet would experience no benefit, while the tablet manufacturer would have to implement a more expensive design. In other words, nobody benefits. The current state of affairs is "good enough."

I think tablet brands are aware of this desire from gamers, but they have not done anything to make the tablets work better for these scenarios.

[Wacom - Does a higher, or faster, report rate mean better performance?](https://support.wacom.com/hc/en-us/articles/1500006331322-Does-a-higher-or-faster-report-rate-mean-better-performance) ([archive](https://archive.is/s6gOg))

## Finding report rates

Different tools can be used: [Measuring report rate](/drawtab/process/measuring/measuring-report-rate.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.sevenpens.com/drawtab/guides/advanced/tablet-reports.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
