FutabaGP1212.h
author sl
Thu, 21 Aug 2014 21:30:38 +0200
changeset 8 5a9dbbc40c6b
child 9 6b08e3e81cf3
permissions -rw-r--r--
Ground work to support multiple type of display, notably GP1212A02
     1 //
     2 //
     3 //
     4 
     5 #ifndef FUTABA_GP1212_H
     6 #define FUTABA_GP1212_H
     7 
     8 #include "Display.h"
     9 
    10 
    11 /**
    12 Common functionality between GP1212A01A and GP1212A02A
    13 */
    14 class GP1212XXXX : public GraphicDisplay
    15 	{
    16 public:
    17 	//From FutabaVfd
    18     virtual int MinBrightness() const {return 0;}
    19     virtual int MaxBrightness() const {return 5;}
    20 	};
    21 
    22 
    23 
    24 #endif