From 49613b6e1112661ce0e692268a7a7a700247d00e Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Sat, 22 May 2021 18:00:41 +0200 Subject: [PATCH] Layout fix --- tasmota/displaydesc/readme.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/tasmota/displaydesc/readme.md b/tasmota/displaydesc/readme.md index 9cf2b3223..21352d68b 100644 --- a/tasmota/displaydesc/readme.md +++ b/tasmota/displaydesc/readme.md @@ -1,5 +1,6 @@ -Display Descriptor files for use with universal display driver. -4 (3) options to select a display driver +Display Descriptor files for use with universal display driver. + +Options to select a display driver: 1. file system driven if UFILESYSTEM is in place (preferred option for normal use) to select a display rename the file to "display.ini" and put into flash file system. @@ -9,11 +10,14 @@ Display Descriptor files for use with universal display driver. 3. rule buffer 3 driven copy descriptor to rule buffer number 3 but do not enable rule 3 (descriptor may not contain ANY spaces in this mode) -(4.) compile the descriptor into driver. - convert the file to a string and place it into your user_config.h file using #define +4. compile the descriptor into driver. + + convert the file to a string and place it into your `user_config_override.h` file Example: - #define DSP_ROM_DESC \ + +``` +#define DSP_ROM_DESC \ ":H,SH1106,128,64,1,I2C,3c,*,*,*\n" \ ":S,0,1,1,0,40,20\n" \ ":I\n" \ @@ -38,7 +42,7 @@ Display Descriptor files for use with universal display driver. ":A,00,10,40,00,02\n" \ ":i,A6,A7\n" \ "#\n" - +``` for further info about display descriptors read the tasmota docs display part.