> For the complete documentation index, see [llms.txt](https://guide.cronuszen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.cronuszen.com/gpcscripting/gpc-script-guide/gpc-developer-guide/constants/cronus-zen/oled.md).

# OLED

### General OLED Constants

| **Name**     | **Description**                  | **Value** |
| ------------ | -------------------------------- | --------- |
| OLED\_WHITE  | The White color constant         | 1         |
| OLED\_BLACK  | The Black color constant         | 0         |
| OLED\_WIDTH  | The width of the OLED in pixels  | 128       |
| OLED\_HEIGHT | The height of the OLED in pixels | 64        |

### OLED Font Constants

| **Name**                   | **Description**                              | **Value** |
| -------------------------- | -------------------------------------------- | --------- |
| OLED\_FONT\_SMALL          | Small font                                   | 0         |
| OLED\_FONT\_MEDIUM         | Medium font                                  | 1         |
| OLED\_FONT\_LARGE          | Large font                                   | 2         |
| OLED\_FONT\_SMALL\_WIDTH   | Width of each character for the small font   | 7         |
| OLED\_FONT\_MEDIUM\_WIDTH  | Width of each character for the medium font  | 11        |
| OLED\_FONT\_LARGE\_WIDTH   | Width of each character for the large font   | 16        |
| OLED\_FONT\_SMALL\_HEIGHT  | Height of each character for the small font  | 10        |
| OLED\_FONT\_MEDIUM\_HEIGHT | Height of each character for the medium font | 18        |
| OLED\_FONT\_LARGE\_HEIGHT  | Height of each character for the large font  | 26        |

### OLED Button Constants

| **Name**       | **Description**   | **Value** |
| -------------- | ----------------- | --------- |
| OLED\_CROSS    | Cross Button      | 127       |
| OLED\_CIRCLE   | Circle Button     | 128       |
| OLED\_SQUARE   | Square Button     | 129       |
| OLED\_TRIANGLE | Triangle Button   | 130       |
| OLED\_UP       | Up DPAD Button    | 131       |
| OLED\_DOWN     | Down DPAD Button  | 132       |
| OLED\_LEFT     | Left DPAD Button  | 133       |
| OLED\_RIGHT    | Right DPAD Button | 134       |
| OLED\_VIEW     | View Button       | 135       |
| OLED\_MENU     | Menu Button       | 136       |


---

# 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:

```
GET https://guide.cronuszen.com/gpcscripting/gpc-script-guide/gpc-developer-guide/constants/cronus-zen/oled.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
