Remarks
IL3897 | |
---|---|
Status | |
Source code | GitHub |
NuGet package |
The IL3897 is a dual-color display controller for ePaper displays. Data is sent to the controller via SPI and supports full screen updates only.
The IL3897 is commonly paired with a 2.13" two color ePaper display.
Sample projects available on GitHub
Wiring Example
To control a IL3897 from Meadow, connect the following:
IL3897 | Meadow Pin |
---|---|
BUSY | D15 |
RST | D14 |
DC | D13 |
CS | D12 |
CLK | SCK |
DIN | MOSI |
GND | GND |
VCC | 3V3 |
If your display does not include any of the above pins, they can be omitted. Pass NULL
into the constructor for the missing pin(s).
Syntax
public class Il3897 : EpdBase
Constructors
Il3897(IIODevice, ISpiBus, IPin, IPin, IPin, IPin, Int32, Int32)
Declaration
public Il3897(IIODevice device, ISpiBus spiBus, IPin chipSelectPin, IPin dcPin, IPin resetPin, IPin busyPin, int width = 122, int height = 250)
Parameters
Type | Name | Description |
---|---|---|
IIODevice | device | |
ISpiBus | spiBus | |
IPin | chipSelectPin | |
IPin | dcPin | |
IPin | resetPin | |
IPin | busyPin | |
System.Int32 | width | |
System.Int32 | height |
Fields
LUT_Full_Update
Declaration
public static readonly byte[] LUT_Full_Update
Field Value
Type | Description |
---|---|
System.Byte[] |
LUT_Partial_Update
Declaration
public static readonly byte[] LUT_Partial_Update
Field Value
Type | Description |
---|---|
System.Byte[] |
Methods
Initialize()
Declaration
protected override void Initialize()