Skip to content

Commit 9194e28

Browse files
committed
1.0.15
1 parent 87ee79b commit 9194e28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ mcu-renderer is a lightweight C graphics library designed for microcontrollers (
3232

3333
## Quick start
3434

35-
1. **Include the library**: Add the device-specific header file (see [supported devices](docs/supported-devices.md)).
35+
1. **Include the library**: Add the device-specific header file (see [Supported devices](docs/supported-devices.md)).
3636
2. **Initialize the display**:
3737
```c
3838
mr_t mr;
3939
mr_xxx_init(&mr, ...); // Replace 'xxx' with your device (e.g., mr_st7789_init)
4040
mr_xxx_set_sleep(&mr, false); // Disable sleep mode (color displays only)
4141
mr_xxx_set_display(&mr, true); // Turn on display
4242
```
43-
3. **Set up fonts**: Use provided fonts from the [fonts](fonts) folder or convert custom fonts (see [Preparing Fonts](#preparing-fonts)).
43+
3. **Set up fonts**: Use provided fonts from the [mcu-renderer-fonts](src/mcu-renderer-fonts) folder or convert custom fonts (see [Preparing Fonts](#preparing-fonts)).
4444
4. **Draw text**:
4545
```c
4646
mr_set_font(&mr, &my_font);
@@ -63,7 +63,7 @@ mcu-renderer is a lightweight C graphics library designed for microcontrollers (
6363
- For color displays, disable sleep mode using `mr_xxx_set_sleep(false)`.
6464
6565
2. **Configure fonts**:
66-
- Use prebuilt fonts from the [fonts](fonts) folder or create custom fonts (see [Preparing Fonts](#preparing-fonts)).
66+
- Use prebuilt fonts from the [mcu-renderer-fonts](src/mcu-renderer-fonts) folder or create custom fonts (see [Preparing Fonts](#preparing-fonts)).
6767
- Set the active font with `mr_set_font()` before drawing text or retrieving metrics.
6868
6969
3. **Define screen layout**:

0 commit comments

Comments
 (0)