Kent Display - 240x160x2.9

Replacement: None. It's time for this product to step aside and make room in the catalog for even more cool stuff. This page is for reference only.

This is a 240x160 reflective cholesteric liquid crystal display (ChLCD) from Kent Displays. The most distinguishing feature of a ChLCD is its ability to retain its image even when the LCD is not powered, similar to e-ink technology. This makes the LCD a great fit for portable battery-powered projects. Bistable, sunlight readable, and easy to integrate, the 240x160 (1/8 VGA) is truly a unique LCD display solution.

Integrated into the display is an embedded controller which generates the unique ChLCD drive waveforms and provides automatic temperature compensation. Communication with the controller is achieved through an SPI-compatible interface, which means a minimal number of I/O resources are needed to control the display.

We now have a breakout board compatible with this display's connector here.

These screens may show traces of pressure points from handling. Don't worry, it's not broken. This can be easily corrected with an electronic erase. The datasheet discusses how to do this on page 8, under section 4.4 Electronic Erase (Pressure Point Removal)

  • “No Power” Image Retention
  • Serial Peripheral Interface (SPI) Compatible
  • 3.3V Logic Supply
  • 4.0V – 9.0V Power Supply
  • 240 Columns × 160 Rows
  • 100 dpi (pixels per inch)
  • Integrated LCD Bias Supply
  • 250 kbps Image Download
  • 32 KB of Image Memory
  • 10 μA Sleep Current
  • Full or Partial Screen Update Ability

Comments

Looking for answers to technical questions?

We welcome your comments and suggestions below. However, if you are looking for solutions to technical questions please see our Technical Assistance page.

  • PHJ / about 12 years ago / 1

    Made some bulky code to put the Kent display to the test. Here is a demo: http://youtu.be/8u-Hw_c67LM. Code: www.huinink.info/code01.ino

  • aarontt / about 12 years ago / 1

    Has anyone been able to read from their LCD?

  • VgForce / about 13 years ago / 1

    There wasn't any code I could find that allow me to write letters and numbers on the display so I thought I create one for my project and share with you guys.
    http://www.megaupload.com/?d=JO2G0G0L

    • stephan schulz / about 13 years ago / 1

      @ VgForce
      how would i need to modify your code to run it on the 320x240 Kent display?
      thanks, stephan.

      • VgForce / about 13 years ago * / 1

        My guess would be:
        //would need to
        change 120, 30 to big display dimension (row by col(byte)) within functions, and 4800 to (row time col) (Note: different pins for spi on mega)

  • Invisible / about 14 years ago / 1

    I've created code for the Arduino board to write an image file to this display. More information and sample code can be found here: http://www.rustynailworkshop.com/Projects/Entries/2010/8/9_Arduino_Powered_Kent_Display.html

  • Invisible / about 14 years ago / 1

    The sample code, suitably modified, works to show the display reads from its memory and writes to the screen. However, there is no code available to render text on this display. Does anyone know how to make this display text, or even better, some graphics?

  • fab1an / about 14 years ago / 1

    The sample Code for the display doesn't work on an Arduino Duemilanove out of the box. You have to adjust SPI clock speed and data clock to get it to work.
    Replace this line:
    SPCR = (1 << SPE) | (1 << MSTR) | (1 << SPR0) | (1 << CPHA);
    with this:
    SPCR = (1 << SPE) | (1 << MSTR) | (1 << SPR0) | (1 << SPR1);

    • una.veritas / about 14 years ago / 1

      Finally I got the response from my Display!
      Don't forget the CPHA bit for SPI mode:
      SPCR = (1 << SPE) | (1 << MSTR) | (1 << SPR0) | (1 << SPR1) | (1<<CPHA);

  • fab1an / about 14 years ago / 1

    The sample Code for the display doesn't work on an Arduino Duemilanove out of the box. You have to adjust SPI clock speed and data clock to get it to work.
    Replace this line:
    SPCR = (1<<SPE) | (1<<MSTR) | (1<<SPR0) | (1<<CPHA);
    with this:
    SPCR = (1<<SPE) | (1<<MSTR) | (1<<SPR0) | (1<<SPR1);

  • jonathan.may / about 14 years ago / 1

    OK, I got this working.
    And then I broke it. I managed to drive it into a state where the only SPI command it appears to accept is a software reset. How do I know the software reset "works"? Because the screen kind of flickers.
    Can anyone help?

  • jonathan.may / about 14 years ago / 1

    The one that I received today has a 16-pin 1mm pitch flat flex connector soldered to the board. The datasheet shows how you use the pins - as soon as I get some cable for this I'll hook it up and let you know how I get on.
    SparkFun - suggest you stock/sell cables with this if the connector is going to be soldered to the board?

  • Oleg / about 14 years ago / 1

    meanwhile you can also visit with article from Google about Radish: http://code.google.com/apis/gdata/articles/radish.html

  • Oleg / about 14 years ago / 1

    how to connect cable to this unit?

  • TheMoogle / about 14 years ago / 1

    what do graphics look like on this display?
    I'm very curious

    • Oleg / about 14 years ago / 1

      there is a picture in datasheet, anyway a recent live image would be better.

Customer Reviews

No reviews yet.