Example code for the EM027BS013 ePaper display module.

Dependencies:   EM027BS013 mbed

Committer:
embeddedartists
Date:
Tue Jul 22 12:02:06 2014 +0000
Revision:
0:02968930216b
Example code to use the EM027BS013 ePaper control library. This code is tested with the LPC4088 QuickStart board and the LPC4088 QSB Base Board. The code works with both the 14-pos connector and arduino pinning (using jumper cables)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
embeddedartists 0:02968930216b 1 /**
embeddedartists 0:02968930216b 2 * \file
embeddedartists 0:02968930216b 3 *
embeddedartists 0:02968930216b 4 * \brief The definition of image data arrays
embeddedartists 0:02968930216b 5 *
embeddedartists 0:02968930216b 6 * Copyright (c) 2012-2014 Pervasive Displays Inc. All rights reserved.
embeddedartists 0:02968930216b 7 *
embeddedartists 0:02968930216b 8 * Authors: Pervasive Displays Inc.
embeddedartists 0:02968930216b 9 *
embeddedartists 0:02968930216b 10 * Redistribution and use in source and binary forms, with or without
embeddedartists 0:02968930216b 11 * modification, are permitted provided that the following conditions
embeddedartists 0:02968930216b 12 * are met:
embeddedartists 0:02968930216b 13 *
embeddedartists 0:02968930216b 14 * 1. Redistributions of source code must retain the above copyright
embeddedartists 0:02968930216b 15 * notice, this list of conditions and the following disclaimer.
embeddedartists 0:02968930216b 16 * 2. Redistributions in binary form must reproduce the above copyright
embeddedartists 0:02968930216b 17 * notice, this list of conditions and the following disclaimer in
embeddedartists 0:02968930216b 18 * the documentation and/or other materials provided with the
embeddedartists 0:02968930216b 19 * distribution.
embeddedartists 0:02968930216b 20 *
embeddedartists 0:02968930216b 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
embeddedartists 0:02968930216b 22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
embeddedartists 0:02968930216b 23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
embeddedartists 0:02968930216b 24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
embeddedartists 0:02968930216b 25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
embeddedartists 0:02968930216b 26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
embeddedartists 0:02968930216b 27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
embeddedartists 0:02968930216b 28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
embeddedartists 0:02968930216b 29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
embeddedartists 0:02968930216b 30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
embeddedartists 0:02968930216b 31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
embeddedartists 0:02968930216b 32 */
embeddedartists 0:02968930216b 33
embeddedartists 0:02968930216b 34 extern unsigned char const image_array_270_1[]; /**< use 2.7" image array #1 */
embeddedartists 0:02968930216b 35 extern unsigned char const image_array_270_2[]; /**< use 2.7" image array #2 */
embeddedartists 0:02968930216b 36 extern unsigned char const image_array_270_ea[]; /**< use 2.7" image array with EA logo image */
embeddedartists 0:02968930216b 37 extern unsigned char const image_array_270_text[]; /**< use 2.7" image array with sample text */
embeddedartists 0:02968930216b 38
embeddedartists 0:02968930216b 39