LC-E201A. Application note. 1. Mechanical Specification: LC-E021A-application note page 1 of 16 Revision:

Size: px
Start display at page:

Download "LC-E201A. Application note. 1. Mechanical Specification: LC-E021A-application note page 1 of 16 Revision:"

Transcription

1 LC-E201A Application note 1. Mechanical Specification: LC-E021A-application note page 1 of 16 Revision:

2 2. Input/ Output Pin Assignment Pin No. Symbol I/O Description Remark 1 NC Do not connect 2 GDR O N-Channel MOSFET Gate Drive Control 3 RESE I Current Sense Input for the Control Loop 4 VGL C Negative Gate driving voltage 5 VGH C Positive Gate driving voltage 6 TSCL O I2C Interface to digital temperature sensor Clock pin 7 TSDA I/O I2C Interface to digital temperature sensor Data pin 8 BS1 I Bus Interface selection pin Note BUSY O Busy state output pin Note RES# I Reset signal input, Active Low 11 D/C# I Data /Command control pin Note CS# I Chip select input pin Note D0 I/O Serial Clock pin (SPI) 14 D1 I/O Serial Data pin (SPI) 15 VDDIO P Power Supply for interface logic pins It should be connected with VCI 16 VCI P Power Supply for the chip 17 VSS P Ground 18 VDD C Core logic power pin VDD can be regulated internally from VCI. A capacitor has to be connected between VDD and VSS. 19 VPP C Power Supply for OTP Programming 20 VSH C Positive Source driving voltage 21 PREVGH C Power Supply pin for VGH and VSH 22 VSL C Negative Source driving voltage 23 PREVGL C Power Supply pin for VCOM, VGL and VSL 24 VCOM C VCOM driving voltage I = Input Pin, O =Output Pin, I/O = Bi-directional Pin (Input/Output), P = Power Pin, C = Capacitor Pin Note 5-1: This pin is the chip select input from MCU. The chip is enabled for MCU communication only when CS# is pulled LOW. Note 5-2: This pin is Data/Command control pin connecting to the MCU in 4-wire SPI mode. When the pin is pulled HIGH, the signal at D1 will be interpreted as data. When the pin is pulled LOW, the signal at D1will be interpreted as command. Note 5-3: This pin is Busy state output pin. When Busy is High, the operation of chip should not be interrupted, command should not be sent. The chip will put Busy pin High when - Outputting display waveform - Programming of OTP - Communicating with digital temperature sensor Note 5-4: Bus interface selection pin BS1 = L => 4-lines serial peripheral interface(spi) BS1 = H => 3-lines serial peripheral interface (SPI) 9 bits SPI LC-E021A-application note page 2 of 16 Revision:

3 3. Test circuit LC-E021A-application note page 3 of 16 Revision:

4 4. List of Components 5. Demo Program 1) General application, enter sleep mode when it is standby mode #include msp430x22x4.h const unsigned char init_data[]= 0x82,0x00,0x00,0x00,0xAA,0x00,0x00,0x00, 0xAA,0xAA,0x00,0x00,0xAA,0xAA,0xAA,0x00, 0x55,0xAA,0xAA,0x00,0x55,0x55,0x55,0x55, 0xAA,0xAA,0xAA,0xAA,0x55,0x55,0x55,0x55, 0xAA,0xAA,0xAA,0xAA,0x15,0x15,0x15,0x15, 0x05,0x05,0x05,0x05,0x01,0x01,0x01,0x01, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, LC-E021A-application note page 4 of 16 Revision:

5 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x41,0x45,0xF1,0xFF,0x5F,0x55,0x01,0x00, 0x00,0x00,;//waveform void RESET() nrst_l; DELAY_mS(1);//1ms nrst_h; DELAY_mS(1);//1ms void DELAY_100nS(int delaytime) //???? int i,j; for(i=0;i<delaytime;i++) for(j=0;j<2;j++); void DELAY_mS(int delaytime) //???? int i,j; for(i=0;i<delaytime;i++) for(j=0;j<100;j++); void DELAY_S(int delaytime) //???? int i,j,k; for(i=0;i<delaytime;i++) for(j=0;j<1000;j++) for(k=0;k<100;k++); void SPI4W_WRITECOM(unsigned char INIT_COM) unsigned char TEMPCOM; unsigned char scnt; TEMPCOM=INIT_COM; ncs_h; ncs_l; LC-E021A-application note page 5 of 16 Revision:

6 SCLK_L; ndc_l; for(scnt=0;scnt<8;scnt++) if(tempcom&0x80) SDA_H; else SDA_L; SCLK_H; SCLK_L; TEMPCOM=TEMPCOM<<1; ncs_h; void SPI4W_WRITEDATA(unsigned char INIT_DATA) unsigned char TEMPCOM; unsigned char scnt; TEMPCOM=INIT_DATA; ncs_h; ncs_l; SCLK_L; ndc_h; for(scnt=0;scnt<8;scnt++) if(tempcom&0x80) SDA_H; else SDA_L; SCLK_H; SCLK_L; TEMPCOM=TEMPCOM<<1; LC-E021A-application note page 6 of 16 Revision:

7 ncs_h; void READBUSY() while(1) _NOP();_NOP();_NOP();_NOP(); if((p1in & 0x04)==0) break; void WRITE_LUT() unsigned char i; SPI4W_WRITECOM(0x32);//write LUT register for(i=0;i<90;i++) SPI4W_WRITEDATA(init_data[i]);//write LUT register void INIT_SPD2701() //initial code SPI4W_WRITECOM(0x10);//set no deep sleep mode SPI4W_WRITEDATA(0x00); SPI4W_WRITECOM(0x11);//data enter mode SPI4W_WRITEDATA(0x01); SPI4W_WRITECOM(0x44);//set RAM x address start/end SPI4W_WRITEDATA(0x00);//RAM x address start at 00h; SPI4W_WRITEDATA(0x11);//RAM x address end at 11h(17)->72 SPI4W_WRITECOM(0x45);//set RAM y address start/end SPI4W_WRITEDATA(0xAB);//RAM y address start at 00h; SPI4W_WRITEDATA(0x00);//RAM y address start at ABh(171)->172 SPI4W_WRITECOM(0x4E);//set RAM x address count to 0; SPI4W_WRITEDATA(0x00); SPI4W_WRITECOM(0x4F);//set RAM y address count to 0; SPI4W_WRITEDATA(0xAB); SPI4W_WRITECOM(0x21);//bypass RAM data SPI4W_WRITEDATA(0x03); SPI4W_WRITECOM(0xF0);//booster feedback used LC-E021A-application note page 7 of 16 Revision:

8 SPI4W_WRITEDATA(0x1F); SPI4W_WRITECOM(0x2C);//vcom voltage SPI4W_WRITEDATA(0xA0); SPI4W_WRITECOM(0x3C);//board voltage SPI4W_WRITEDATA(0x63); SPI4W_WRITECOM(0x22);//display updata sequence option,in page 33 SPI4W_WRITEDATA(0xC4);//enable sequence: clk -> CP -> LUT -> pattern display WRITE_LUT(); SPI4W_WRITECOM(0x22);//display updata sequence option SPI4W_WRITEDATA(0x03); SPI4W_WRITECOM(0x20); void image_a0() int i; SPI4W_WRITECOM(0x24); for(i=0;i<3096;i++) // SPI4W_WRITEDATA(gImage_F1[i]); void image_a1() int i; SPI4W_WRITECOM(0x24); for(i=0;i<3096;i++) // SPI4W_WRITEDATA(gImage_DALIAN[i]); void image_a2() int i; SPI4W_WRITECOM(0x24); for(i=0;i<3096;i++) // SPI4W_WRITEDATA(gImage_bazhe[i]); LC-E021A-application note page 8 of 16 Revision:

9 void display(unsigned char pic_n) if(pic_n==0) image_a0(); if(pic_n==1) image_a1(); if(pic_n==2) image_a2(); if(pic_n==3) image_a3(); SPI4W_WRITECOM(0x20); READBUSY(); entersleep(); DELAY_mS(400); void main( void ) // int i; // Stop watchdog timer to prevent time out reset WDTCTL = WDTPW + WDTHOLD; //set direction of IO P1DIR =0xF8; //set P1.3~7 output RESET(); while(1) INIT_SPD2701(); display(1); DELAY_S(3); INIT_SPD2701(); display(2); DELAY_S(3); INIT_SPD2701(); display(3); DELAY_S(3); LC-E021A-application note page 9 of 16 Revision:

10 2) deep sleep mode #include msp430x22x4.h const unsigned char init_data[]= 0x00,0x00,0x00,0x55,0x00,0x00,0x55,0x55, 0x00,0x55,0x55,0x55,0x55,0x55,0x55,0x55, 0x55,0xAA,0x55,0x55,0xAA,0xAA,0xAA,0xAA, 0x15,0x15,0x15,0x15,0x05,0x05,0x05,0x05, 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x34,0x32,0xF1,0x74,0x14,0x00,0x00,0x00, 0x00,0x00,;//waveform void RESET() nrst_l; DELAY_mS(1);//1ms nrst_h; DELAY_mS(1);//1ms void DELAY_100nS(int delaytime) // int i,j; for(i=0;i<delaytime;i++) for(j=0;j<2;j++); void DELAY_mS(int delaytime) // int i,j; for(i=0;i<delaytime;i++) for(j=0;j<100;j++); void DELAY_S(int delaytime) // int i,j,k; for(i=0;i<delaytime;i++) for(j=0;j<1000;j++) LC-E021A-application note page 10 of 16 Revision:

11 for(k=0;k<100;k++); void SPI4W_WRITECOM(unsigned char INIT_COM) unsigned char TEMPCOM; unsigned char scnt; TEMPCOM=INIT_COM; ncs_h; ncs_l; SCLK_L; ndc_l; for(scnt=0;scnt<8;scnt++) if(tempcom&0x80) SDA_H; else SDA_L; SCLK_H; SCLK_L; TEMPCOM=TEMPCOM<<1; ncs_h; void SPI4W_WRITEDATA(unsigned char INIT_DATA) unsigned char TEMPCOM; unsigned char scnt; TEMPCOM=INIT_DATA; ncs_h; ncs_l; SCLK_L; ndc_h; for(scnt=0;scnt<8;scnt++) LC-E021A-application note page 11 of 16 Revision:

12 if(tempcom&0x80) SDA_H; else SDA_L; SCLK_H; SCLK_L; TEMPCOM=TEMPCOM<<1; ncs_h; void READBUSY() while(1) _NOP();_NOP();_NOP();_NOP(); if((p1in & 0x04)==0) break; void WRITE_LUT() unsigned char i; SPI4W_WRITECOM(0x32);//write LUT register for(i=0;i<90;i++) SPI4W_WRITEDATA(init_data[i]);//write LUT register void INIT_SPD2701() RESET();//exit deep sleep mode //initial code SPI4W_WRITECOM(0x10);//set no deep sleep mode SPI4W_WRITEDATA(0x00); SPI4W_WRITECOM(0x11);//data enter mode SPI4W_WRITEDATA(0x01); SPI4W_WRITECOM(0x44);//set RAM x address start/end SPI4W_WRITEDATA(0x00);//RAM x address start at 00h; LC-E021A-application note page 12 of 16 Revision:

13 SPI4W_WRITEDATA(0x11);//RAM x address end at 11h(17)->72 SPI4W_WRITECOM(0x45);//set RAM y address start/end SPI4W_WRITEDATA(0xAB);//RAM y address start at 00h; SPI4W_WRITEDATA(0x00);//RAM y address start at Abh(171)->172 SPI4W_WRITECOM(0x4E);//set RAM x address count to 0; SPI4W_WRITEDATA(0x00); SPI4W_WRITECOM(0x4F);//set RAM y address count to 0; SPI4W_WRITEDATA(0xAB); SPI4W_WRITECOM(0x21);//bypass RAM data SPI4W_WRITEDATA(0x83); SPI4W_WRITECOM(0xF0);//booster feedback used SPI4W_WRITEDATA(0x1F); SPI4W_WRITECOM(0x2C);//vcom voltage SPI4W_WRITEDATA(0xA0); SPI4W_WRITECOM(0x3C);//board voltage SPI4W_WRITEDATA(0x63); SPI4W_WRITECOM(0x22);//display updata sequence option,in page 33 SPI4W_WRITEDATA(0xCC);//enable sequence: clk -> CP -> LUT -> initial display -> pattern display WRITE_LUT(); void enterdeepsleep() SPI4W_WRITECOM(0x22);//display updata sequence option SPI4W_WRITEDATA(0x03); SPI4W_WRITECOM(0x10); SPI4W_WRITEDATA(0x01); SPI4W_WRITECOM(0x20); void image_a0() int i; SPI4W_WRITECOM(0x24); for(i=0;i<3096;i++) // SPI4W_WRITEDATA(gImage_F1[i]); void image_a1() LC-E021A-application note page 13 of 16 Revision:

14 int i; SPI4W_WRITECOM(0x24); for(i=0;i<3096;i++) // SPI4W_WRITEDATA(gImage_DALIAN[i]); void image_a2() int i; SPI4W_WRITECOM(0x24); for(i=0;i<3096;i++) // SPI4W_WRITEDATA(gImage_bazhe[i]); void display(unsigned char pic_n) if(pic_n==0) image_a0(); if(pic_n==1) image_a1(); if(pic_n==2) image_a2(); if(pic_n==3) image_a3(); SPI4W_WRITECOM(0x20); READBUSY(); enterdeepsleep(); DELAY_mS(400); void main( void ) // int i; // Stop watchdog timer to prevent time out reset WDTCTL = WDTPW + WDTHOLD; //set direction of IO P1DIR =0xF8; //set P1.3~7 output LC-E021A-application note page 14 of 16 Revision:

15 RESET(); while(1) INIT_SPD2701(); display(1); DELAY_S(3); INIT_SPD2701(); display(2); DELAY_S(3); INIT_SPD2701(); display(3); DELAY_S(3); LC-E021A-application note page 15 of 16 Revision:

16 3.) The differences of deep sleep mode, sleep mode and operation mode 4.) Adjust the direction of showing image According to function of IC, need to limit the input mode of data flow when displaying image. (As shown below),that is input 72 pixels of each gate one by one. Next is the setting ways to make displaying image rotate. (one line to one direction) LC-E021A-application note page 16 of 16 Revision:

Active Matrix Electrophoretic display Display with memory effect. Display content can be kept without voltage supply) size 2.04, resolution 172x72

Active Matrix Electrophoretic display Display with memory effect. Display content can be kept without voltage supply) size 2.04, resolution 172x72 LC-E201A Active Matrix Electrophoretic display Display with memory effect. Display content can be kept without voltage supply) size 2.04, resolution 172x72 1. Profile Display module for applications which

More information

Crystalfontz. epaper DISPLAY MODULE DATASHEET. Datasheet Release for CFAP122250A0-0213

Crystalfontz. epaper DISPLAY MODULE DATASHEET. Datasheet Release for CFAP122250A0-0213 epaper DISPLAY MODULE DATASHEET Datasheet Release 2017-08-15 for CFAP122250A0-0213 Crystalfontz America, Inc. 12412 East Saltese Avenue Spokane Valley, WA 99216-0357 Phone: 888-206-9720 Fax: 509-892-1203

More information

Crystalfontz. epaper DISPLAY MODULE DATASHEET. Datasheet Release for CFAP200200A0-0154

Crystalfontz. epaper DISPLAY MODULE DATASHEET. Datasheet Release for CFAP200200A0-0154 epaper DISPLAY MODULE DATASHEET Datasheet Release 2017-08-16 for CFAP200200A0-0154 Crystalfontz America, Inc. 12412 East Saltese Avenue Spokane Valley, WA 99216-0357 Phone: 888-206-9720 Fax: 509-892-1203

More information

SPECIFICATION : EPD. Product Type. Description : Screen Size: 2.13" Color: Black and White Display Resolution: 250*122. Issue Date :

SPECIFICATION : EPD. Product Type. Description : Screen Size: 2.13 Color: Black and White Display Resolution: 250*122. Issue Date : SPECIFICATION Product Type : EPD Description : Screen Size: 2.3" Color: Black and White Display Resolution: 25*22 Issue Date : 27.3.2 Waveshare Electronics Rm 83, Dynamic World Building, Zhenhua Rd, Futian

More information

OLED DISPLAY MODULE. Application Notes. DD-2864BY-2A with EVK board PRODUCT NUMBER

OLED DISPLAY MODULE. Application Notes. DD-2864BY-2A with EVK board PRODUCT NUMBER OLED DISPLAY MODULE Application Notes PRODUCT NUMBER DD-2864BY-2A with EVK board TABLE OF CONTENTS 1 EVK SCHEMATIC... 4 2 SYMBOL DEFINITION... 5 3 TIMING CHARACTERISTICS... 6 4 CONNECTION BETWEEN OLED

More information

OLED DISPLAY MODULE. Application Notes. DD-32645C-1A with EVK board PRODUCT NUMBER

OLED DISPLAY MODULE. Application Notes. DD-32645C-1A with EVK board PRODUCT NUMBER OLED DISPLAY MODULE Application Notes PRODUCT NUMBER DD-32645C-1A with EVK board Copyright 2006 DENSITRON TECHNOLOGIES plc. All rights reserved. Proprietary Data TABLE OF CONTENTS 1 EVK SCHEMATIC... 4

More information

Specification for TINK 4.2''EPD

Specification for TINK 4.2''EPD File Name Specification For TINK 4.2 ' EPD Module Number TINK-EPD42A03 Version A/0 Page Number 1 of 33 Specification for TINK 4.2''EPD Model NO.:TINK-EPD42A03 Customer approval Customer Approval by Date

More information

SPECIFICATION : EPD. Product Type. Description : Screen Size: 2.9" Color: Black and White Display Resolution: 296*128. Issue Date :

SPECIFICATION : EPD. Product Type. Description : Screen Size: 2.9 Color: Black and White Display Resolution: 296*128. Issue Date : SPECIFICATION Product Type : EPD Description : Screen Size: 2.9" Color: Black and White Display Resolution: 296*128 Issue Date : 2017.03.02 Waveshare Electronics Rm 813, Dynamic World Building, Zhenhua

More information

OLED DISPLAY MODULE. Application Notes. DD-9664FC-2A with EVK board PRODUCT NUMBER

OLED DISPLAY MODULE. Application Notes. DD-9664FC-2A with EVK board PRODUCT NUMBER OLED DISPLAY MODULE Application Notes PRODUCT NUMBER DD-9664FC-2A with EVK board Copyright 2007 DENSITRON TECHNOLOGIES plc. All rights reserved. Proprietary Data TABLE OF CONTENTS 1 EVK SCHEMATIC... 4

More information

Texas Instruments Microcontroller HOW-TO GUIDE Interfacing Keypad with MSP430F5529

Texas Instruments Microcontroller HOW-TO GUIDE Interfacing Keypad with MSP430F5529 Texas Instruments Microcontroller HOW-TO GUIDE Interfacing Keypad with MSP430F5529 Contents at a Glance PS PRIMER MSP430 kit... 3 Keypad... 4 Interfacing keypad... 4 Interfacing keypad with MSP430F5529...

More information

SSD1355. Advance Information. 128 RGB x 160 Dot Matrix OLED/PLED Segment/Common Driver with Controller

SSD1355. Advance Information. 128 RGB x 160 Dot Matrix OLED/PLED Segment/Common Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1355 Advance Information 128 RGB x 160 Dot Matrix OLED/PLED Segment/Common Driver with Controller This document contains information on a new product. Specifications

More information

UG-2828GDEDF11. Application note. Evaluation Kit User Guide

UG-2828GDEDF11. Application note. Evaluation Kit User Guide UG-2828GDEDF11 Application note Evaluation Kit User Guide Writer: Sean. Lai Email: sean_lai@univision.com.tw Version: Preliminary 1 Contents 悠景科技股份有限公司 1. REVISION HISTORY...3 2. EVK Schematic..4 3. Symbol

More information

Product Specification

Product Specification Product Specification Bi-Color OLED Display Part Number: FDS128x64(26.7x31.26)TFP PREPARED BY CHECKED BY APPROVED BY Focus Display Solutions, Inc. Notes: 1. Please contact Focus Display Solutions, Inc.

More information

SSD1353. Advance Information. 160RGB x 132 Dot Matrix OLED/PLED Segment/Common Driver with Controller

SSD1353. Advance Information. 160RGB x 132 Dot Matrix OLED/PLED Segment/Common Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1353 Advance Information 160RGB x 132 Dot Matrix OLED/PLED Segment/Common Driver with Controller This document contains information on a new product. Specifications

More information

P x64 OLED Application Notes APPLICATION NOTES. RITDISPLAY CORPORATION X /02/22 Design Dept.

P x64 OLED Application Notes APPLICATION NOTES. RITDISPLAY CORPORATION X /02/22 Design Dept. P15905 64x64 OLED Application Notes RITDISPLAY CORPORATION - 1 - X01 2008/02/22 Revision History Version X01 Content First release RITDISPLAY CORPORATION - 2 - X01 2008/02/22 DESCRIPTION This is a 64X64

More information

DM-OLED X 64 BLUE GRAPHIC OLED DISPLAY MODULE WITH SPI, I2C INTERFACE

DM-OLED X 64 BLUE GRAPHIC OLED DISPLAY MODULE WITH SPI, I2C INTERFACE 1.3 128 X 64 BLUE GRAPHIC OLED DISPLAY MODULE WITH SPI, I2C INTERFACE Contents Revision History Main Features Pin Description Panel Pin Description Module Pin Description Mechanical Drawing Panel Mechanical

More information

SSD1322. Product Preview. 480 x 128, Dot Matrix High Power OLED/PLED Segment/Common Driver with Controller

SSD1322. Product Preview. 480 x 128, Dot Matrix High Power OLED/PLED Segment/Common Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1322 Product Preview 480 x 128, Dot Matrix High Power OLED/PLED Segment/Common Driver with Controller This document contains information on a product under

More information

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax:

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax: NHD-0216MW-AB3 Character OLED Display NHD- Newhaven Display 0216-2 Lines x 16 Characters MW- Character OLED Display A- Model B- Blue 3-2.4V~5.5V Supply Voltage Newhaven Display International, Inc. 2661

More information

Pi-Tek OLED Module PG12864KW Revision: 1.0 May Pi Tek. OLED Module SPECIFICATIONS MODEL NO. : PG12864KW PRODUCT TYPE: STANDARD

Pi-Tek OLED Module PG12864KW Revision: 1.0 May Pi Tek. OLED Module SPECIFICATIONS MODEL NO. : PG12864KW PRODUCT TYPE: STANDARD Pi Tek OLED Module SPECIFICATIONS MODEL NO. : PG12864KW PRODUCT TYPE: STANDARD This specification may be changed without any notices in order improve performance or quality etc. 1 Content History of versions

More information

SSD1327. Advance Information. 128 x 128, 16 Gray Scale Dot Matrix OLED/PLED Segment/Common Driver with Controller

SSD1327. Advance Information. 128 x 128, 16 Gray Scale Dot Matrix OLED/PLED Segment/Common Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1327 Advance Information 128 x 128, 16 Gray Scale Dot Matrix OLED/PLED Segment/Common Driver with Controller This document contains information on a new

More information

ILI9342. a-si TFT LCD Single Chip Driver 320RGBx240 Resolution and 262K color. Specification Preliminary

ILI9342. a-si TFT LCD Single Chip Driver 320RGBx240 Resolution and 262K color. Specification Preliminary a-si TFT LCD Single Chip Driver Specification Preliminary Version: V007 Document No.: _DS_V007.pdf ILI TECHNOLOGY CORP. 8F, No. 38, Taiyuan St., Jhubei City, Hsinchu Country 302 Taiwan R.O.C. Tel.886-3-5600099;

More information

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax:

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax: NHD-1.5-128128UGC3 Graphic Color OLED Display Module NHD- Newhaven Display 1.5-1.5 Diagonal Size 128128-128 x 128 Pixels UG- Model C- Full Color 3- +3V Power Supply Newhaven Display International, Inc.

More information

Display Datasheet. 2.1", 132 ppi, 240x146 pixels

Display Datasheet. 2.1, 132 ppi, 240x146 pixels Display Datasheet 2.1", 132 ppi, 240x146 pixels Part-No. 700756 Revision 1 Display Datasheet 700756 2.1 1.docx Page 1 of 12 Revision Status Date Author Reason of Modification 1 15-Jan-2018 RN Initial version

More information

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax:

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax: NHD-27-2864WDY3 Graphic OLED Display Module NHD- Newhaven Display 27-27 Diagonal Size 2864-28 x 64 Pixel Resolution WD- Model Y- Emitting Color: Yellow 3- +33V Power Supply Newhaven Display International,

More information

ILI2312. ILI2312 Single Chip Capacitive Touch Sensor Controller. Specification ILI TECHNOLOGY CORP. Version: V1.03.

ILI2312. ILI2312 Single Chip Capacitive Touch Sensor Controller. Specification ILI TECHNOLOGY CORP. Version: V1.03. Single Chip Capacitive Touch Sensor Controller Specification Version: V1.03 Date: 2015/11/17 ILI TECHNOLOGY CORP. 8F, No.38, Taiyuan St., Jhubei City, Hsinchu County 302, Taiwan, R.O.C. Tel.886-3-5600099;

More information

OLED DISPLAY MODULE. Application Notes. DD-12833YW-1A with EVK board PRODUCT NUMBER

OLED DISPLAY MODULE. Application Notes. DD-12833YW-1A with EVK board PRODUCT NUMBER OLED DISPLAY MODULE Application Notes PRODUCT NUMBER DD-12833YW-1A with EVK board TABLE OF CONTENTS 1 EVK SCHEMATIC... 4 2 SYMBOL DEFINITION... 5 3 TIMING CHARACTERISTICS... 6 3.1 MODE (I²C INTERFACE)...

More information

Device: EDR B. This document Version: 1c. Date: 11 November Matches module version: v3 [25 Aug 2016]

Device: EDR B. This document Version: 1c. Date: 11 November Matches module version: v3 [25 Aug 2016] Device: EDR-200200B This document Version: 1c Date: 11 November 2016 Matches module version: v3 [25 Aug 2016] Description: e-paper Display Driver and 200x200 e-paper Display EDR-200200B v1 datasheet Page

More information

1.3inch OLED User Manual

1.3inch OLED User Manual 1.3inch OLED User Manual 1. Key Parameters Table 1: Key Parameters Driver Chip SH1106 Interface 3-wire SPI 4-wire SPI I2C Resolution 128*64 Display Size 1.3 inch Dimension 29mm*33mm Colors Yellow, Blue

More information

ILI2511. ILI2511 Single Chip Capacitive Touch Sensor Controller. Specification ILI TECHNOLOGY CORP. Version: V1.4. Date: 2018/7/5

ILI2511. ILI2511 Single Chip Capacitive Touch Sensor Controller. Specification ILI TECHNOLOGY CORP. Version: V1.4. Date: 2018/7/5 Single Chip Capacitive Touch Sensor Controller Specification Version: V1.4 Date: 2018/7/5 ILI TECHNOLOGY CORP. 8F., No.1, Taiyuan 2 nd St., Zhubei City, Hsinchu County 302, Taiwan (R.O.C.) Tel.886-3-5600099;

More information

ILI9342C. a-si TFT LCD Single Chip Driver 320RGBx240 Resolution and 262K color. Datasheet

ILI9342C. a-si TFT LCD Single Chip Driver 320RGBx240 Resolution and 262K color. Datasheet a-si TFT LCD Single Chip Driver Datasheet Version: V101 Document No.: _DTS_V101_20111214 ILI TECHNOLOGY CORP. 8F, No. 38, Taiyuan St., Jhubei City, Hsinchu Country 302 Taiwan R.O.C. Tel.886-3-5600099;

More information

LCD MODULE SPECIFICATION

LCD MODULE SPECIFICATION MULTI-INNO TECHNOLOGY CO., LTD. LCD MODULE SPECIFICATION Model : Revision Engineering Date Our Reference PRODUCT SPECIFICATION 128 64 GRAPHICS OLED DISPLAY MODULE -S001 -S002 -CM21 ORGANIZED / DATE CHECKED

More information

SSD1329. Advance Information. 128 x 128 OLED Segment / Common Driver with Controller Equips with 16 Gray Scale Levels and 64 Hard Icon Lines

SSD1329. Advance Information. 128 x 128 OLED Segment / Common Driver with Controller Equips with 16 Gray Scale Levels and 64 Hard Icon Lines SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1329 Advance Information 128 x 128 OLED Segment / Common Driver with Controller Equips with 16 Gray Scale Levels and 64 Hard Icon Lines This document contains

More information

SSD1329. Advance Information. 128 x 128 OLED Segment / Common Driver with Controller Equips with 16 Gray Scale Levels and 64 Hard Icon Lines

SSD1329. Advance Information. 128 x 128 OLED Segment / Common Driver with Controller Equips with 16 Gray Scale Levels and 64 Hard Icon Lines SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1329 Advance Information 128 x 128 OLED Segment / Common Driver with Controller Equips with 16 Gray Scale Levels and 64 Hard Icon Lines This document contains

More information

Interfacing CMA3000-D01 to an MSP430 ultra low-power microcontroller

Interfacing CMA3000-D01 to an MSP430 ultra low-power microcontroller Interfacing CMA3000-D01 to an MSP430 ultra low-power microcontroller 1 INTRODUCTION The objective of this document is to show how to set up SPI/I2C communication between VTI Technologies CMA3000-D01 digital

More information

Interfacing CMR3000-D01 to an MSP430 ultra low-power microcontroller

Interfacing CMR3000-D01 to an MSP430 ultra low-power microcontroller Interfacing CMR3000-D01 to an MSP430 ultra low-power microcontroller 1 INTRODUCTION The objective of this document is to show how to set up SPI/I2C communication between VTI Technologies CMR3000-D01 digital

More information

2-Oct-13. the world s most energy friendly microcontrollers and radios

2-Oct-13.  the world s most energy friendly microcontrollers and radios 1 2 3 EFM32 4 5 LESENSE Low Energy Sensor Interface Autonomous sensing in Deep Sleep LESENSE with central control logic ACMP for sensor input DAC for reference generation Measure up to 16 sensors Inductive

More information

AIS CUBE 2.83 AMOLED DISPLAY. Datasheet & Application Note Rev.A July 2010 Release

AIS CUBE 2.83 AMOLED DISPLAY. Datasheet & Application Note Rev.A July 2010 Release AIS CUBE 2.83 AMOLED DISPLAY Datasheet & Application Note Rev.A July 2010 Release TECHNICAL OVERVIEW Diagonal Size 2.83 Driving Mode Active Matrix Colour Mode 16bit RGB 5/6/5262K Colours Interface Mode

More information

UG-9664HSWAG01 96 X 64. Application note. Evaluation Kit User Guide

UG-9664HSWAG01 96 X 64. Application note. Evaluation Kit User Guide UG-9664HSWAG01 96 X 64 Application note Evaluation Kit User Guide Writer: Wabber. Huang Email: Wabber_huang@univision.com.tw Version: Preliminary 1 REVISION HISTORY Date Page Contents Version 2006/7/17

More information

DB0-DB16 to pin D0-D13, pin A0-A1 of Arduino RESET to A2

DB0-DB16 to pin D0-D13, pin A0-A1 of Arduino RESET to A2 Test CODE Example 1 Display with Arduino: Now we will show how to use the Arduino (ATMega 168) to control the TFT LCD module. To have a quicker refresh rate, we use the 16bit mode for LCD, it s two times

More information

SSD1339. Advance Information. 132RGB x 132 with 2 smart Icon lines Dot Matrix OLED/PLED Segment/Common Driver with Controller

SSD1339. Advance Information. 132RGB x 132 with 2 smart Icon lines Dot Matrix OLED/PLED Segment/Common Driver with Controller Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/wwwcrystalfontzcom/controlers/ SSD1339 Advance Information 132RGB x 132 with 2 smart Icon lines Dot Matrix OLED/PLED Segment/Common Driver with

More information

ECGR 4101/5101, Fall 2016: Lab 1 First Embedded Systems Project Learning Objectives:

ECGR 4101/5101, Fall 2016: Lab 1 First Embedded Systems Project Learning Objectives: ECGR 4101/5101, Fall 2016: Lab 1 First Embedded Systems Project Learning Objectives: This lab will introduce basic embedded systems programming concepts by familiarizing the user with an embedded programming

More information

CHAPTER 6 CONCLUSION AND SCOPE FOR FUTURE WORK

CHAPTER 6 CONCLUSION AND SCOPE FOR FUTURE WORK 134 CHAPTER 6 CONCLUSION AND SCOPE FOR FUTURE WORK 6.1 CONCLUSION Many industrial processes such as assembly lines have to operate at different speeds for different products. Process control may demand

More information

Display Datasheet. 3.1", 105 ppi, 312x74 pixels

Display Datasheet. 3.1, 105 ppi, 312x74 pixels Display Datasheet 3.1", 105 ppi, 312x74 pixels Part-No. 700524 Revision 1 PL-AE-DDS-002798 All rights reserved. Revision 1 Display Datasheet 700524 3.1 1.docx Page 1 of 14 Revision Status 1 Date Author

More information

ILI9335. a-si TFT LCD Single Chip Driver 240RGBx320 Resolution and 262K color. Datasheet

ILI9335. a-si TFT LCD Single Chip Driver 240RGBx320 Resolution and 262K color. Datasheet a-si TFT LC Single Chip river atasheet Version: V008 ocument No: S_V008pdf ILI TECHNOLOGY CORP 8F, No38, Taiyuan St, Jhubei City, Hsinchu County 302, Taiwan, ROC Tel886-3-5600099; Fax886-3-5600055 Table

More information

Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ a-si TFT LCD Single Chip Driver 240RGBx320 Resolution and 262K color

Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ a-si TFT LCD Single Chip Driver 240RGBx320 Resolution and 262K color Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ a-si TFT LCD Single Chip Driver Datasheet Version: V100 Document No.: _DTS_V100_20130423 ILI TECHNOLOGY CORP.

More information

Midas Components Limited Electra House 32 Southtown Road Great Yarmouth Norfolk NR31 0DU England

Midas Components Limited Electra House 32 Southtown Road Great Yarmouth Norfolk NR31 0DU England LVDS input to 40 Way LVDS Display Interface Board Part Number: MCIB-16 Version: 1 Date: 04/05/2016 Revision History Date Description of change 04/05/2016 First draft 1 MCIB-16 LVDS input to 40 Way LVDS

More information

SSD1305. Advance Information. 132 x 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller

SSD1305. Advance Information. 132 x 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1305 Advance Information 132 x 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller This document contains information on a new product. Specifications

More information

SPECIFICATIONS FOR LCD MODULE

SPECIFICATIONS FOR LCD MODULE SPECIFICATIONS FOR LCD MODULE Customer: Model name: Description: HW101F-0D-0E(IVO101_40PIN) LIQUID CRYSTAL DISPLAY MODULE Date: 2013-09-27 CUSTOMER APPROVAL Accept Customer Approval Reject comment: Approved

More information

瑞鼎科技股份有限公司. Raydium Semiconductor Corporation. RM68080 Data Sheet. Single Chip Driver with 262K color. for 240RGBx432 a-si TFT LCD

瑞鼎科技股份有限公司. Raydium Semiconductor Corporation. RM68080 Data Sheet. Single Chip Driver with 262K color. for 240RGBx432 a-si TFT LCD 瑞鼎科技股份有限公司 Raydium Semiconductor Corporation RM68080 Data Sheet Single Chip Driver with 262K color for 240RGBx432 a-si TFT LCD Revision:0.2 Date:May 31, 2010 Revision History: Revision Description Of Change

More information

FireBeetle Covers-OSD Character Overlay Module SKU:DFR0515

FireBeetle Covers-OSD Character Overlay Module SKU:DFR0515 FireBeetle Covers-OSD Character Overlay Module SKU:DFR0515 Introduction OSD is the abbreviation of On-screen Display, this is a screen menu adjustment display technology to add different menu-style characters

More information

PAN502x Capacitive Touch Controller Datasheet

PAN502x Capacitive Touch Controller Datasheet PAN502x Capacitive Touch Controller sheet PAN502x-A-A, Rev 1.0 Panchip Microelectronics www.panchip.com Copyright@2014, Panchip Microelectronics, CO., LTD. All right reserved. 1 / 16 Table of Contents

More information

RM68090 Data Sheet. Single Chip Driver with 262K color. for 240RGBx320 a-si TFT LCD. Revision:0.4 Date:Apr. 27, 2011 瑞鼎科技股份有限公司.

RM68090 Data Sheet. Single Chip Driver with 262K color. for 240RGBx320 a-si TFT LCD. Revision:0.4 Date:Apr. 27, 2011 瑞鼎科技股份有限公司. 瑞鼎科技股份有限公司 Raydium Semiconductor Corporation RM68090 Data Sheet Single Chip Driver with 262K color for 240RGBx320 a-si TFT LCD Revision:0.4 Date:Apr. 27, 2011 Page 1 of 123 Revision History: Revision Description

More information

2,7 128x64 Bi-Stable Cholesteric Display

2,7 128x64 Bi-Stable Cholesteric Display Display Elektronik GmbH BCD MODULE 2,7 128x64 Bi-Stable Cholesteric Display Product Specification Ver.: 3 03.12.2018 Version: 3 PAGE: 1 Revision Status Version Revise Date Page Content Modified By 0 09.12.2015

More information

Preliminary Product Specification

Preliminary Product Specification Preliminary Product Specification Module name: C0283QGLD-T Issue date: 2008/04/02 Version: 1.8 Customer Approved by Customer Approved by CMEL PD Division ENG Division QA Dept Note: 1. The information contained

More information

1.Overview of X7083/X7043/X7023

1.Overview of X7083/X7043/X7023 1.Overview of X7083/X7043/X7023 11 Introduction X7083/X7043/X7023 is an LSI that generates a pulse for controlling the speed and positioning of pulse train inputtype servo motors and stepping motors. X7083

More information

GSDM110 Three-Axis Digital Magnetometer

GSDM110 Three-Axis Digital Magnetometer Features! 3-axis Hall Effect Magnetometer! Low Profile and Small Footprint! Wide supply Voltage! Independent IOs Supply and Supply Voltage Compatible! Low Power Consumption! I2C/SPI Digital Output Interface!

More information

By using Elan s MTP (Multiple Time Programmable) Writer, it s easy to perform the in-circuit programming for Elan s EM78M611 MTP micro-controllers.

By using Elan s MTP (Multiple Time Programmable) Writer, it s easy to perform the in-circuit programming for Elan s EM78M611 MTP micro-controllers. 1 Introduction By using Elan s MTP (Multiple Time Programmable) Writer, it s easy to perform the in-circuit programming for Elan s EM78M611 MTP micro-controllers. 2 About EM78M611 General Description The

More information

ILI9331. a-si TFT LCD Single Chip Driver 240RGBx320 Resolution and 262K Color. Datasheet

ILI9331. a-si TFT LCD Single Chip Driver 240RGBx320 Resolution and 262K Color. Datasheet a-si TFT LCD Single Chip Driver 240RGBx320 Resolution and 262K Color Datasheet Version: V011 Document No: DS_V011pdf ILI TECHNOLOGY CORP 8F, No38, Taiyuan St, Jhubei City, Hsinchu County 302, Taiwan, ROC

More information

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax:

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax: NHD-0.95-9664G Graphic Color OLED Display NHD- Newhaven Display 0.95-0.95 Diagonal Size 9664-96 x 64 Pixels G- OLED Glass Newhaven Display International, Inc. 2661 Galvin Ct. Elgin IL, 60124 Ph: 847-844-8795

More information

MMA axis digital accelerometer module

MMA axis digital accelerometer module MMA7455 3-axis digital accelerometer module Instruction The MMA7455L is a Digital Output (I2C/SPI), low power, low profile capacitive micromachined accelerometer featuring signal conditioning, a low pass

More information

SSD1331. Advance Information. 96RGB x 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller

SSD1331. Advance Information. 96RGB x 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1331 Advance Information 96RGB x 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller This document contains information on a new product. Specifications

More information

EPD. Module DKE CO.,LTD EPD. Page 1of30

EPD. Module DKE CO.,LTD EPD. Page 1of30 DKE CO.,LTD DEPG154R1 Add. NO.66,Jinghai Street,Economic Zone of changxing Island, Dalian, China Tel. 8641185277766/ /85277767/85277768 Fax 8641185277769 Email sales @ dkelcd.com Website www.chinaepaper.com

More information

< W3150A+ / W5100 Application Note for SPI >

< W3150A+ / W5100 Application Note for SPI > < W3150A+ / W5100 Application Note for SPI > Introduction This application note describes how to set up the SPI in W3150A+ or W5100. Both the W3150A+ and W5100 have same architecture. W5100 is operated

More information

ILI9225. a-si TFT LCD Single Chip Driver 176RGBx220 Resolution and 262K color. Datasheet Preliminary

ILI9225. a-si TFT LCD Single Chip Driver 176RGBx220 Resolution and 262K color. Datasheet Preliminary a-si TFT LC Single Chip river atasheet Preliminary Version: V22 ocument No: S_V22pdf ILI TECHNOLOGY CORP 4F, No 2, Tech 5 th Rd, Hsinchu Science Park, Taiwan 3, ROC Tel886-3-56795; Fax886-3-56796 Table

More information

DOCUMENT REVISION HISTORY 1:

DOCUMENT REVISION HISTORY 1: PAGE 2 OF 12 DOCUMENT REVISION HISTORY 1: DOCUMENT REVISION FROM TO DATE DESCRIPTION CHANGED BY A 2008.11.19 First Release. (Based on LCD counter drawing: COG-DEMO1003 (Rev.0)) PHILIP CHENG CHECKED BY

More information

Tentative Product Specification

Tentative Product Specification Tentative Product Specification Module name: P0430WQLC-T Issue date: 2007/12/26 Version: 1.0 Customer Approved by Customer Approved by CMEL PD Division ENG Division QA Dept Note: 1. The information contained

More information

TEVATRON TECHNOLOGIES PVT. LTD Embedded! Robotics! IoT! VLSI Design! Projects! Technical Consultancy! Education! STEM! Software!

TEVATRON TECHNOLOGIES PVT. LTD Embedded! Robotics! IoT! VLSI Design! Projects! Technical Consultancy! Education! STEM! Software! Summer Training 2016 Advance Embedded Systems Fast track of AVR and detailed working on STM32 ARM Processor with RTOS- Real Time Operating Systems Covering 1. Hands on Topics and Sessions Covered in Summer

More information

CPE 323 Introduction to Embedded Computer Systems: MSP430 System Architecture An Overview

CPE 323 Introduction to Embedded Computer Systems: MSP430 System Architecture An Overview CPE 323 Introduction to Embedded Computer Systems: MSP430 System Architecture An Overview Aleksandar Milenkovic Electrical and Computer Engineering The University of Alabama in Huntsville milenka@ece.uah.edu

More information

Revision No. Date Description Item Page

Revision No. Date Description Item Page Midas Components Limited Electra House 32 Southtown Road Great Yarmouth Norfolk NR31 0DU England Telephone +44 (0)1493 602602 Fax +44 (0)1493 665111 Email sales@midasdisplays.com Website www.midasdisplays.com

More information

Stepper 6 click. PID: MIKROE 3214 Weight: 26 g

Stepper 6 click. PID: MIKROE 3214 Weight: 26 g Stepper 6 click PID: MIKROE 3214 Weight: 26 g Stepper 6 click is the complete integrated bipolar step motor driver solution. It comes with the abundance of features that allow silent operation and optimal

More information

SSD1316. Advance Information. 128 x 39 Dot Matrix OLED/PLED Segment/Common Driver with Controller

SSD1316. Advance Information. 128 x 39 Dot Matrix OLED/PLED Segment/Common Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD36 Advance Information 28 x 39 Dot Matrix OLED/PLED Segment/Common Driver with Controller This document contains information on a new product Specifications

More information

C Language Programming through the ADC and the MSP430 (ESCAPE)

C Language Programming through the ADC and the MSP430 (ESCAPE) OpenStax-CNX module: m46087 1 C Language Programming through the ADC and the MSP430 (ESCAPE) Matthew Johnson Based on C Language Programming through the ADC and the MSP430 by Matthew Johnson This work

More information

Lecture (03) PIC16F84 (2)

Lecture (03) PIC16F84 (2) Lecture (03) PIC16F84 (2) By: Dr. Ahmed ElShafee ١ PIC16F84 has a RISC architecture, or Harvard architecture in another word ٢ PIC16F84 belongs to a class of 8 bit microcontrollers of RISC architecture.

More information

File: /media/j/texas/my msp430/g3tr/g3tr.c Pagina 1 di 5

File: /media/j/texas/my msp430/g3tr/g3tr.c Pagina 1 di 5 File: /media/j/texas/my msp430/g3tr/g3tr.c Pagina 1 di 5 /+ filename: g3tr.c G3TR means: Giuseppe Talarico Transistor Type Recognizer This version is for launchpad MSP430 Just only two 10K resistors and

More information

By using Elan s MTP (Multiple Time Programmable) writer, it s easy to perform the in-circuit programming for Elan s EM78M612 MTP micro-controllers.

By using Elan s MTP (Multiple Time Programmable) writer, it s easy to perform the in-circuit programming for Elan s EM78M612 MTP micro-controllers. 1 Introduction By using Elan s MTP (Multiple Time Programmable) writer, it s easy to perform the in-circuit programming for Elan s MTP micro-controllers. 2 About General Description The is a series of

More information

Rayson Bluetooth Module

Rayson Bluetooth Module Rayson Bluetooth Module Low Energy Smart Module Features Bluetooth standard V4.0 conformity. CSR000/00 chip Programmable general purpose PIO controller : Switch-mode power supply. IC for EEPROM and ICs

More information

ADC to I 2 C. Data Sheet. 10 Channel Analog to Digital Converter. with output via I 2 C

ADC to I 2 C. Data Sheet. 10 Channel Analog to Digital Converter. with output via I 2 C Data Sheet 10 Channel Analog to Digital Converter with output via I 2 C Introduction Many microcontroller projects involve the use of sensors like Accelerometers, Gyroscopes, Temperature, Compass, Barometric,

More information

Display Future Ltd

Display Future Ltd Display Future Ltd www.displayfuture.com LCD MODULE SPECIFICATION Model: DF-EPN47BW-O This module uses ROHS materials For customer acceptance Customer date Approved Comments The standard product specification

More information

SH X 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller. Features. General Description 1 V2.2

SH X 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller. Features. General Description 1 V2.2 132 X 64 Dot Matrix OLD/PLD Segment/Common Driver with Controller Features Support maximum 132 X 64 dot matrix panel mbedded 132 X 64 bits SRAM Operating voltage: - Logic voltage supply: VDD1 = 1.65V -

More information

SSD1306. Advance Information. 128 x 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller

SSD1306. Advance Information. 128 x 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1306 Advance Information 128 x 64 Dot Matrix OLED/PLED Segment/Common Driver with Controller This document contains information on a new product Specifications

More information

TTP226. Preliminary 8 KEYS TOUCH PAD DETECTOR IC GENERAL DESCRIPTION

TTP226. Preliminary 8 KEYS TOUCH PAD DETECTOR IC GENERAL DESCRIPTION 8 KEYS TOUCH PAD DETECTOR IC GENERAL DESCRIPTION The TTP222 is a touch pad detector IC which offers 8 touch keys. The touching detection IC is designed for replacing traditional direct button key with

More information

Preliminary Product Specification

Preliminary Product Specification Preliminary Product Specification Module name: Issue date: 2007/08/09 Version: 2.6 Customer Approved by Customer Approved by CMEL PD Division ENG Division QA Dept Note: 1. The information contained herein

More information

ECE2049 Homework #2 The MSP430 Architecture & Basic Digital IO (DUE Friday 9/8/17 at 4 pm in class)

ECE2049 Homework #2 The MSP430 Architecture & Basic Digital IO (DUE Friday 9/8/17 at 4 pm in class) ECE2049 Homework #2 The MSP430 Architecture & Basic Digital IO (DUE Friday 9/8/17 at 4 pm in class) Your homework should be neat and professional looking. You will loose points if your HW is not properly

More information

Using the HT16K33 in DVD Player Panel Applications

Using the HT16K33 in DVD Player Panel Applications Using the HT16K33 in DVD Player Panel Applications D/N:AN0363E Introduction The HT16K33 is a memory mapping and multi-function LED controller driver. The maximum display capacity in the device is 128 dots

More information

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax:

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax: NHD-1.27-12896ASC3 Graphic Color OLED Display Module NHD- Newhaven Display 1.27-1.27 Diagonal Size 12896-128 x 96 Pixels AS- Model C- Full Color 3- +3.3V Power Supply Newhaven Display International, Inc.

More information

TP6825. USB Full Speed Game Pad Controller. Data Sheet. Tenx reserves the right to change or discontinue this product without notice.

TP6825. USB Full Speed Game Pad Controller. Data Sheet. Tenx reserves the right to change or discontinue this product without notice. Advance Information TP6825 USB Full Speed Game Pad Controller Data Sheet Tenx reserves the right to change or discontinue this product without notice. tenx technology, inc. Contain 1. GENERAL DESCRIPTION...

More information

DOCUMENT REVISION HISTORY 1:

DOCUMENT REVISION HISTORY 1: PAGE 2 OF 19 DOCUMENT REVISION HISTORY 1: DOCUMENT REVISION DATE DESCRIPTION CHANGED BY CHECKED BY FROM TO A 2007.08.20 First Release. XIAOLI LAN TOM SUN PAGE 3 OF 19 CONTENTS Page No. 1. GENERAL DESCRIPTION

More information

Microcontrollers and Interfacing

Microcontrollers and Interfacing Microcontrollers and Interfacing Week 10 Serial communication with devices: Serial Peripheral Interconnect (SPI) and Inter-Integrated Circuit (I 2 C) protocols College of Information Science and Engineering

More information

Color 7 click. PID: MIKROE 3062 Weight: 19 g

Color 7 click. PID: MIKROE 3062 Weight: 19 g Color 7 click PID: MIKROE 3062 Weight: 19 g Color 7 click is a very accurate color sensing Click board which features the TCS3472 color light to digital converter with IR filter, from ams. It contains

More information

BATSEL KEY3 KEY2 HOSCO GPIO0 DCDIS HOSCI KEY0 D4 KEY1 D3. Reset Default. 2 D7 BI / L Bit7 of ext. memory data bus

BATSEL KEY3 KEY2 HOSCO GPIO0 DCDIS HOSCI KEY0 D4 KEY1 D3. Reset Default. 2 D7 BI / L Bit7 of ext. memory data bus 3. Pin Description 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 NGND LXVCC KEY4 GPIO1 CE2# GPIO2 CE1# VDD KEY5 KEY6 LED0 LED1 LED2 NC NC VCC LXVDD BAT

More information

SSD1307. Advance Information. 128 x 39 Dot Matrix OLED/PLED Segment/Common Driver with Controller

SSD1307. Advance Information. 128 x 39 Dot Matrix OLED/PLED Segment/Common Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ SSD1307 Advance Information 128 x 39 Dot Matrix OLED/PLED Segment/Common

More information

PIC16F87X. 28/40-pin 8-Bit CMOS FLASH Microcontrollers. Devices Included in this Data Sheet: Pin Diagram PDIP. Microcontroller Core Features:

PIC16F87X. 28/40-pin 8-Bit CMOS FLASH Microcontrollers. Devices Included in this Data Sheet: Pin Diagram PDIP. Microcontroller Core Features: PIC16F7X 2/40-pin -Bit CMOS FLASH Microcontrollers Devices Included in this Data Sheet: PIC16F7 PIC16F74 PIC16F76 PIC16F77 Microcontroller Core Features: High-performance RISC CPU Only 5 single word instructions

More information

Specification BT45213 BTHQ128064AVD1-SRE-12-COG. Doc. No.: COG-BTD

Specification BT45213 BTHQ128064AVD1-SRE-12-COG. Doc. No.: COG-BTD Specification BT45213 BTHQ128064AVD1-SRE-12-COG Doc. No.: COG-BTD12864-40 Version October 2010 DOCUMENT REVISION HISTORY: DOCUMENT REVISION DATE DESCRIPTION CHANGED BY FROM TO A 2010.10.11 First Release.

More information

EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG

EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG Adam Lindberg github.com/eproxus HARDWARE COMPONENTS SOFTWARE FUTURE Boot, Serial console, Erlang shell DEMO THE GRISP BOARD SPECS Hardware & specifications

More information

EA OLEDL128-6 INCL CONTROLLER SSD1309 FOR SPI AND I²C

EA OLEDL128-6 INCL CONTROLLER SSD1309 FOR SPI AND I²C INCL CONTROLLER SSD139 FOR SPI AND I²C FEATURES Dimension 68x51x3.3mm 12864 DOTS (RELATES TO 8x21 CHARACTER OR 4x16 LARGE CHARACTER) HIGH CONTRAST OLED DISPLAY INTEGRATED CONTROLLER SSD139 SPI INTERFACE:

More information

ILI9320. a-si TFT LCD Single Chip Driver 240RGBx320 Resolution and 262K color. Datasheet Preliminary

ILI9320. a-si TFT LCD Single Chip Driver 240RGBx320 Resolution and 262K color. Datasheet Preliminary a-si TFT LC Single Chip river atasheet Preliminary Version: V5 ocument No: S_V5pdf ILI TECHNOLOGY CORP 4F, No, Tech 5 th Rd, Hsinchu Science Park, Taiwan 3, ROC Tel886-3-56795; Fax886-3-56796 Table of

More information

DIGITAL HUMIDITY SENSOR HYT-131

DIGITAL HUMIDITY SENSOR HYT-131 Rights reserved for change in technical data! B+B Thermo-Technik GmbH Postfach 1748 D-78158 Donaueschingen Phone: +49 771 8316-622 Fax: +49 771 8316-629 DIGITAL HUMIDITY SENSOR 1. Features - On-Chip humidity

More information

EA OLEDS102-6 INCL CONTROLLER SSD1306B FOR SPI AND I²C

EA OLEDS102-6 INCL CONTROLLER SSD1306B FOR SPI AND I²C EA OLEDS2-6 INCL CONTROLLER SSD36B FOR SPI AND I²C Dimension 39x4x3.3mm FEATURES 264 DOTS (RELATES TO 8x7 CHARACTER OR 4x2 LARGE CHARACTER) HIGH CONTRAST OLED DISPLAY INTEGRATED CONTROLLER SSD36B SPI INTERFACE:

More information

Shanghai Belling Corp., Ltd BL55077 zip: Tel: Fax:

Shanghai Belling Corp., Ltd BL55077 zip: Tel: Fax: LCD Driver for 160 Display Units BL55077 1 General Description The BL55077 is a general LCD driver IC for 160 units LCD panel. It features a wide operating supply voltage range, incorporates simple communication

More information

DATA SHEET. ( DOC No. HX8347-A01-DS ) HX8347-A01

DATA SHEET. ( DOC No. HX8347-A01-DS ) HX8347-A01 DATA SHEET ( DOC No. HX8347-A01-DS ) HX8347-A01 240RGB x 320 dot, 262K color, with internal GRAM, TFT Mobile Single Chip Driver Preliminary version 01 240RGB x 320 dot, 262K color, with internal GRAM,

More information