Difference between revisions of "EPM-880 Application Notes"

From ESS-WIKI
Jump to: navigation, search
(Created page with "= EPD-320 Application guide = == Components LIST == == SYSTEM ARCHITECURE == == Waveform mode == There are six Waveform mode for image update and short name as below table...")
 
Line 1: Line 1:
 
= EPD-320 Application guide =
 
= EPD-320 Application guide =
 +
This application provide user a way that image full update and carousel mode for EPD-320 panel display. user only write xml file follow setting rule.
  
 
== Components LIST ==
 
== Components LIST ==
  
 +
{| border="2" cellspacing="1" cellpadding="1" style="width: 164px;"
 +
|-
 +
!
 +
Item
 +
 +
| style="width: 122px;" |  '''Description'''
 +
|-
 +
| '''1'''
 +
| style="width: 122px;" | ''' 32” EPAPER'''
 +
|-
 +
| '''2'''
 +
| style="width: 122px;" | '''&nbsp;EPD-320 PCBA'''<br/>
 +
|-
 +
| '''3'''
 +
| style="width: 122px;" | '''&nbsp;cable'''
 +
|}
 +
 +
[[File:Epd320 1.jpg|600px|RTENOTITLE]]
 
== SYSTEM ARCHITECURE ==
 
== SYSTEM ARCHITECURE ==
 +
 +
== System support ==
 +
 +
Host operating system: linux(ubuntu)、OpenWrt、windows(windows 7 or windows 10)
  
 
== Waveform mode ==
 
== Waveform mode ==
Line 21: Line 44:
 
| align="center" | '''DU'''
 
| align="center" | '''DU'''
 
| align="center" | '''GC16'''
 
| align="center" | '''GC16'''
 +
| align="center" | '''GCC16'''
 +
| align="center" | '''A2'''
 
| align="center" | '''GL16'''
 
| align="center" | '''GL16'''
| align="center" | '''A2'''
 
| align="center" | '''DU4'''
 
 
|}
 
|}
  
Line 38: Line 61:
 
::::'''Grayscale clear, 16 levels A''' "flashy" waveform used for 16 level grayscale images. All the pixels are updated or cleared
 
::::'''Grayscale clear, 16 levels A''' "flashy" waveform used for 16 level grayscale images. All the pixels are updated or cleared
  
'''GL16(Local update WF when white to white , Global update when 16 gray levels)&nbsp;:'''
+
'''GCC16( Global clear update WF)&nbsp;:'''
  
::::The GL16 waveform is used to update anti-aliased text with reduced flash. GL16 should bed used only with Full Display Update.
+
::::'''Grayscale Clear, 16 Levels A''' "more flashy" waveform used for 16 level grayscale images. All the pixels are updated or cleared.
::::The entire display except pixels staying in white will update as the new image is written. The GL16 waveform has 16 unique gray levels.
+
::::This provides the best image appearance.
  
 
'''A2(Local update WF)&nbsp;:'''
 
'''A2(Local update WF)&nbsp;:'''
Line 49: Line 72:
 
::::image quality and ghosting is reduced in exchange for the response time.
 
::::image quality and ghosting is reduced in exchange for the response time.
  
'''DU4(Local update WF)&nbsp;:'''
+
'''GL16(Local update WF when white to white , Global update when 16 gray levels)&nbsp;:'''
  
::::'''A fast update time(simlar to DU)''', non-flashy waveform.
+
::::The GL16 waveform is used to update anti-aliased text with reduced flash. GL16 should bed used only with Full Display Update..
::::This mode supports transitions from any graytone to graytone 0(Black),5,10.15(White).
+
::::The entire display except pixels staying in white will update as the new image is written. The GL16 waveform has 16 unique gray levels.
::::The combination of fast update time and four graytone make it useful for anti-aliased text in menus
 
  
 
== Push image application ==
 
== Push image application ==
  
=== Hardware and software prepare ===
+
=== Hardware prepare ===
 +
 
 +
=== Software prepare ===
 +
 
 +
==== Windows ====
 +
 
 +
==== Linux ====
 +
 
 +
==== OpenWrt ====
 +
 
 +
software package has been integrate to latest Firmware on Hardware model of WISE-3270.
 +
Others hardware platform need put OpenCv, libusb library in system.
 +
 
 +
=== Xml rule ===
  
=== Full update ===
+
<code>
 +
<?xml version="1.0"?>
 +
<epd_config>
 +
</code>
 +
    <epd name="EPD 31.2">
 +
        <color>KW</color>     <!--KW/COLOR -->
 +
        <image_path>D:\Mingsys\epd32\quarteto_linux_app-master\application\photoImg\</image_path>
 +
        <image_name>
 +
<full_update>
 +
            <img>1.bmp</img>
 +
    <stop>stop</stop>
 +
</full_update>
 +
<stop>stop</stop>
 +
</image_name>
 +
<slide_interval>0</slide_interval>
 +
<en_set_temperature>0</en_set_temperature>    <!-- Enable:1, Disable:0 -->
 +
<temperature>25</temperature>
 +
<waveform_mode>2</waveform_mode>
 +
        <rotate>180</rotate>
 +
    </epd>
 +
</epd_config>

Revision as of 11:32, 25 March 2020

EPD-320 Application guide

This application provide user a way that image full update and carousel mode for EPD-320 panel display. user only write xml file follow setting rule.

Components LIST

Item

 Description
1  32” EPAPER
2  EPD-320 PCBA
3  cable

RTENOTITLE

SYSTEM ARCHITECURE

System support

Host operating system: linux(ubuntu)、OpenWrt、windows(windows 7 or windows 10)

Waveform mode

There are six Waveform mode for image update and short name as below table. The mode parameter will use in update command.

mode 0 mode 1 mode 2 mode 3 mode 4 mode 5
INIT DU GC16 GCC16 A2 GL16

INIT(Global update WF) :

Initialize is used to completely clear the display, if it's left in an unknown state (i.e. if the previous image has been lost by a re-boot)

DU(Local update WF) :

Direct update Non-flashing waveform that can be used to update. it can update any changed graytone pixel to black or white only.

GC16(Global update WF) :

Grayscale clear, 16 levels A "flashy" waveform used for 16 level grayscale images. All the pixels are updated or cleared

GCC16( Global clear update WF) :

Grayscale Clear, 16 Levels A "more flashy" waveform used for 16 level grayscale images. All the pixels are updated or cleared.
This provides the best image appearance.

A2(Local update WF) :

animation, 2 Levels is a non-flashing waveform that can be used for fast updates and simple animation.
This wave form support black & white updates only.
image quality and ghosting is reduced in exchange for the response time.

GL16(Local update WF when white to white , Global update when 16 gray levels) :

The GL16 waveform is used to update anti-aliased text with reduced flash. GL16 should bed used only with Full Display Update..
The entire display except pixels staying in white will update as the new image is written. The GL16 waveform has 16 unique gray levels.

Push image application

Hardware prepare

Software prepare

Windows

Linux

OpenWrt

software package has been integrate to latest Firmware on Hardware model of WISE-3270. Others hardware platform need put OpenCv, libusb library in system.

Xml rule

<?xml version="1.0"?> <epd_config>

   <epd name="EPD 31.2">
       <color>KW</color>	    
       <image_path>D:\Mingsys\epd32\quarteto_linux_app-master\application\photoImg\</image_path>
       <image_name>

<full_update>

           <img>1.bmp</img>

<stop>stop</stop> </full_update> <stop>stop</stop> </image_name> <slide_interval>0</slide_interval> <en_set_temperature>0</en_set_temperature> <temperature>25</temperature> <waveform_mode>2</waveform_mode>

       <rotate>180</rotate>
   </epd>

</epd_config>