From b3cc6033d70029231d48f3c8cab5b436b9f85719 Mon Sep 17 00:00:00 2001 From: Arnold Feng Date: Mon, 4 Aug 2025 11:15:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9lcd=5Fshow=E5=92=8Clcd=5Fshow?= =?UTF-8?q?=5Fjpg=E7=9A=84=E6=A8=A1=E5=9D=97=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- en/peripherals/machine.LCD.md | 4 ++-- zh/peripherals/machine.LCD.md | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/en/peripherals/machine.LCD.md b/en/peripherals/machine.LCD.md index 9e2eadf..7abe853 100644 --- a/en/peripherals/machine.LCD.md +++ b/en/peripherals/machine.LCD.md @@ -341,7 +341,7 @@ This method writes commands. `Other Values` - Failed execution ### `lcd.lcd_show` - +Modules supporting this method: EC600K/EC800K/EG800P series modules. ``` lcd.lcd_show(file_name, start_x,start_y,width,hight) ``` @@ -365,7 +365,7 @@ This method displays images by reading files. `Other Values` - Failed execution ### `lcd.lcd_show_jpg` - +Modules supporting this method: EC600K/EC800K/EG800P series modules. ```python lcd.lcd_show_jpg( file_name, start_x,start_y) ``` diff --git a/zh/peripherals/machine.LCD.md b/zh/peripherals/machine.LCD.md index 015e584..66fad7f 100644 --- a/zh/peripherals/machine.LCD.md +++ b/zh/peripherals/machine.LCD.md @@ -330,6 +330,8 @@ lcd.lcd_write_data(data_value, data_value_len) ### `lcd.lcd_show` +支持此方法的模块:EC600K/EC800K/EG800P 系列模块。 + ``` lcd.lcd_show(file_name, start_x,start_y,width,hight) ``` @@ -352,6 +354,9 @@ lcd.lcd_show(file_name, start_x,start_y,width,hight) ### `lcd.lcd_show_jpg` +支持此方法的模块:EC600K/EC800K/EG800P 系列模块。 + + ```python lcd.lcd_show_jpg( file_name, start_x,start_y) ``` -- Gitee