Graphical demo for the LPC4088 Experiment Base Board with one of the Display Expansion Kits. This demo shows a rotating 3D cube with and without textures.

Dependencies:   EALib mbed

Committer:
embeddedartists
Date:
Fri Oct 03 12:48:37 2014 +0000
Revision:
0:c828045bbe69
First version.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
embeddedartists 0:c828045bbe69 1 /*
embeddedartists 0:c828045bbe69 2 * Copyright 2013 Embedded Artists AB
embeddedartists 0:c828045bbe69 3 *
embeddedartists 0:c828045bbe69 4 * Licensed under the Apache License, Version 2.0 (the "License");
embeddedartists 0:c828045bbe69 5 * you may not use this file except in compliance with the License.
embeddedartists 0:c828045bbe69 6 * You may obtain a copy of the License at
embeddedartists 0:c828045bbe69 7 *
embeddedartists 0:c828045bbe69 8 * http://www.apache.org/licenses/LICENSE-2.0
embeddedartists 0:c828045bbe69 9 *
embeddedartists 0:c828045bbe69 10 * Unless required by applicable law or agreed to in writing, software
embeddedartists 0:c828045bbe69 11 * distributed under the License is distributed on an "AS IS" BASIS,
embeddedartists 0:c828045bbe69 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
embeddedartists 0:c828045bbe69 13 * See the License for the specific language governing permissions and
embeddedartists 0:c828045bbe69 14 * limitations under the License.
embeddedartists 0:c828045bbe69 15 */
embeddedartists 0:c828045bbe69 16
embeddedartists 0:c828045bbe69 17 #ifndef EALCDBOARDGPIO_H
embeddedartists 0:c828045bbe69 18 #define EALCDBOARDGPIO_H
embeddedartists 0:c828045bbe69 19
embeddedartists 0:c828045bbe69 20 #include "EaLcdBoard.h"
embeddedartists 0:c828045bbe69 21
embeddedartists 0:c828045bbe69 22 /** An interface to Embedded Artists LCD Boards
embeddedartists 0:c828045bbe69 23 *
embeddedartists 0:c828045bbe69 24 */
embeddedartists 0:c828045bbe69 25 class EaLcdBoardGPIO : public EaLcdBoard {
embeddedartists 0:c828045bbe69 26 public:
embeddedartists 0:c828045bbe69 27
embeddedartists 0:c828045bbe69 28 EaLcdBoardGPIO(PinName sda, PinName scl);
embeddedartists 0:c828045bbe69 29
embeddedartists 0:c828045bbe69 30 void setBC(uint32_t val) { setBacklightContrast(val); };
embeddedartists 0:c828045bbe69 31
embeddedartists 0:c828045bbe69 32 protected:
embeddedartists 0:c828045bbe69 33 virtual void setWriteProtect(bool enable);
embeddedartists 0:c828045bbe69 34 virtual void set3V3Signal(bool enabled);
embeddedartists 0:c828045bbe69 35 virtual void set5VSignal(bool enabled);
embeddedartists 0:c828045bbe69 36 virtual void setDisplayEnableSignal(bool enabled);
embeddedartists 0:c828045bbe69 37 virtual void setBacklightContrast(uint32_t value);
embeddedartists 0:c828045bbe69 38
embeddedartists 0:c828045bbe69 39 private:
embeddedartists 0:c828045bbe69 40 //DigitalOut pinWP;
embeddedartists 0:c828045bbe69 41 DigitalOut pin3v3;
embeddedartists 0:c828045bbe69 42 DigitalOut pin5v;
embeddedartists 0:c828045bbe69 43 DigitalOut pinDE;
embeddedartists 0:c828045bbe69 44 //DigitalOut pinContrast;
embeddedartists 0:c828045bbe69 45 PwmOut pinContrast;
embeddedartists 0:c828045bbe69 46 };
embeddedartists 0:c828045bbe69 47
embeddedartists 0:c828045bbe69 48 #endif
embeddedartists 0:c828045bbe69 49
embeddedartists 0:c828045bbe69 50