PIC24_DOG
DOG.h
gehe zur Dokumentation dieser Datei
1 /*
2  * File: DOG.h
3  * Author: JM
4  *
5  * Created on 5. März 2015, 20:59
6  */
7 
8 #ifndef DOG_H
9 #define DOG_H
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 
16 
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif /* DOG_H */
23 
24 #define CHARACTER_BUFFER_BASE_ADDRESS 0x80 //Konstante die zum Setzen der
25  //Spalte und Zeile gebraucht wird
26 #define CHARACTERS_PER_ROW 16 //Anzahl der Spalten am Display
27 
28 #ifdef DOGM163_norm
29 // Init DOGM163 for 3,3 V SPI 3 Lines Normal
30 #define FUNCTIONSET_IT1 0x35//0x39 // 8bit Datenlänge 2Zeilen Instruction Table 1
31 #define BIASSET 0x15 // Biasset 1/5 3 zeiliges Display
32 #define POWERCONTROL 0x55 // Booster ON, Contrastset C5,C4
33 #define FOLLOWERCONTROL 0x6E // Follower and Gain set
34 #define CONTRASTSET 0x72 // Contrastset C3,C2,C1
35 #define FUNCTIONSET_IT0 0x38 // Instruction Table 0
36 #define DISPLAY_ON_OFF 0x0C // Display ON,Cursor OFF, Cursor blinken
37 // 0x0F // Display ON,Cursor ON, Cursor blinken
38 #define CLEARDISPLAY 0x01 // Cleardisplay,Cursor Home
39 #define ENTRYMODESET 0x06 // Cursor autoincrement
40 
41 #endif
42 
43 #ifdef DOGM163_DHtop
44 // Init DOGM163 for 3,3 V SPI 2 Lines DH on Top
45 #define FUNCTIONSET_IT1 0x3E // 8bit Datenlänge 2Zeilen Instruction Table 1
46 #define BIASSET 0x15 // Biasset 1/5 3 zeiliges Display
47 #define POWERCONTROL 0x55 // Booster ON, Contrastset C5,C4
48 #define FOLLOWERCONTROL 0x6E // Follower and Gain set
49 #define CONTRASTSET 0x72 // Contrastset C3,C2,C1
50 #define FUNCTIONSET_IT0 0x38 // Instruction Table 0
51 #define DISPLAY_ON_OFF 0x0C // Display ON,Cursor OFF, Cursor blinken
52 // 0x0F Display ON,Cursor ON, Cursor blinken
53 #define CLEARDISPLAY 0x01 // Cleardisplay,Cursor Home
54 #define ENTRYMODESET 0x06 // Cursor autoincrement
55 
56 #endif