diff --git a/docs/06-faq.md b/docs/06-faq.md index f3bb76c3..45d01801 100644 --- a/docs/06-faq.md +++ b/docs/06-faq.md @@ -1,7 +1,17 @@ -#### :question: HASP Settings +#### :question: The font looks tiny + +On ESP8266, the out-of-the box font is Unscii 8pt because this font takes up very little space in memory and on flash. +This default font is just intended to get the device setup, then you can Upload your own .zi font. + +On ESP32, the default font is Monserrat 12. + + +#### :question: How to use Fontawesome icons? + +Upload another .zi file named fontawesome*xx*.zi of the same point size as the normal text .zi font. +e.g. If your custom font is `arial24.zi“, you should also add a `fontawesome24.zi` file. -A: #### :question: Is there a file browser built-in? @@ -15,3 +25,7 @@ When the `edit.htm.gz` file is present on Spiffs you will see an additional File Using that webpage, you can right-click and delete files: ![HTTP configuration](assets/images/faq/faq_file_delete.png "Delete file") + +#### :question: Is there a file browser built-in? + +*See: Is there a file browser built-in?* \ No newline at end of file diff --git a/docs/displays/MHS4001.md b/docs/displays/MHS4001.md index 49ea3ecd..7e984426 100644 --- a/docs/displays/MHS4001.md +++ b/docs/displays/MHS4001.md @@ -37,7 +37,7 @@ raspberrypi = -D SPI_FREQUENCY=80000000 -D SPI_TOUCH_FREQUENCY=2500000 -D USER_SETUP_LOADED=1 - -D TOUCH_DRIVER=0 ; XPT2606 Resistive touch panel driver + -D TOUCH_DRIVER=2046 ; XPT2046 Resistive touch panel driver -D SUPPORT_TRANSACTIONS ``` diff --git a/docs/displays/MRB3511.md b/docs/displays/MRB3511.md index c8836100..de55ced6 100644 --- a/docs/displays/MRB3511.md +++ b/docs/displays/MRB3511.md @@ -40,7 +40,7 @@ mrb3511 = -D TFT_HEIGHT=480 -D TFT_ROTATION=0 ; 0=0, 1=90, 2=180 or 3=270 degree -D USER_SETUP_LOADED=1 - -D TOUCH_DRIVER=1 ; GT911 Capacitive touch panel driver + -D TOUCH_DRIVER=911 ; GT911 Capacitive touch panel driver -D SUPPORT_TRANSACTIONS ``` diff --git a/docs/displays/Waveshare_40RPi_LCD(C).md b/docs/displays/Waveshare_40RPi_LCD(C).md index f25d0f37..359c018c 100644 --- a/docs/displays/Waveshare_40RPi_LCD(C).md +++ b/docs/displays/Waveshare_40RPi_LCD(C).md @@ -43,7 +43,7 @@ raspberrypi = -D SPI_FREQUENCY=80000000 -D SPI_TOUCH_FREQUENCY=2500000 -D USER_SETUP_LOADED=1 - -D TOUCH_DRIVER=0 ; XPT2606 Resistive touch panel driver + -D TOUCH_DRIVER=2046 ; XPT2046 Resistive touch panel driver -D SUPPORT_TRANSACTIONS ```