You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/display/lcd/esp_lcd_st7703/README.md
+12
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,18 @@ Implementation of the ST7703 LCD controller with esp_lcd component.
12
12
13
13
For more information on LCD, please refer to the [LCD documentation](https://docs.espressif.com/projects/esp-iot-solution/en/latest/display/lcd/index.html).
14
14
15
+
If the screen still fails to turn on after confirming that the initialization register parameters and timing parameters are correct, you can try enabling the `init_in_command_mode` parameter in the `st7703_vendor_config_t` configuration.
16
+
17
+
```c
18
+
19
+
st7703_vendor_config_t vendor_config = {
20
+
...
21
+
.init_in_command_mode = true,
22
+
...
23
+
};
24
+
25
+
```
26
+
15
27
## Add to project
16
28
17
29
Packages from this repository are uploaded to [Espressif's component service](https://components.espressif.com/).
0 commit comments