凌云物联网实验室ISKBoard(IoT Starter Kits Board)开发板项目源码
guowenxue
2023-04-07 6ddecc5e53def103eec427a61f2de308552735f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/**********************************************************************
*   Copyright: (C)2023 LingYun IoT System Studio
*      Author: GuoWenxue<guowenxue@gmail.com> QQ: 281143292
* Description: ISKBoard OLED Hardware Abstract Layer driver
*
*   ChangeLog:
*        Version    Date       Author            Description
*        V1.0.0  2023.04.3    GuoWenxue      Release initial version
***********************************************************************/
 
#include "hal_oled.h"
 
enum
{
    OLED_CMD = 0,
    OLED_DATA,
};
 
static void IIC_Write_Command(uint8_t command)
{
    /* Send I2C start signal */
    I2C_StartCondition(OLED_I2CBUS);
    
    /* Send OLED I2C slave write address */
    I2C_SendAddress(OLED_I2CBUS, I2C_WR);
    
    /* send command value */
    I2C_WriteByte(OLED_I2CBUS, 0x00);
    I2C_WriteByte(OLED_I2CBUS, command);
    
    /* Send I2C stop signal */
    I2C_StopCondition(OLED_I2CBUS);
}
 
static void IIC_Write_Data(uint8_t data)
{
    /* Send I2C start signal */
    I2C_StartCondition(OLED_I2CBUS);
 
    /* Send OLED I2C slave write address */
    I2C_SendAddress(OLED_I2CBUS, I2C_WR);
 
    /* send data value */
    I2C_WriteByte(OLED_I2CBUS, 0x40);
    I2C_WriteByte(OLED_I2CBUS, data);
    
    /* Send I2C stop signal */
    I2C_StopCondition(OLED_I2CBUS);
}
 
 
 /* OLED write a byte command data or command */
void OLED_WR_Byte(uint8_t data, uint8_t type)
{
    if( OLED_CMD==type )
    {
        IIC_Write_Command(data);
    }
    else
    {
        IIC_Write_Data(data);
    }
}
 
/*
 *+-------------------------------------------------+
 *|        OLED initial/control function API        |
 *+-------------------------------------------------+
 */ 
 
/* Turn OLED display onʾ */
void OLED_Display_On(void)
{
    OLED_WR_Byte(0X8D, OLED_CMD);  //SET DCDC command
    OLED_WR_Byte(0X14, OLED_CMD);  //DCDC ON
    OLED_WR_Byte(0XAF, OLED_CMD);  //DISPLAY ON
}
 
/* Turn OLED display off */
void OLED_Display_Off(void)
{
    OLED_WR_Byte(0X8D, OLED_CMD);  //SET DCDC command
    OLED_WR_Byte(0X10, OLED_CMD);  //DCDC OFF
    OLED_WR_Byte(0XAE, OLED_CMD);  //DISPLAY OFF
}                   
 
/* Clear OLED, it will be black */
void OLED_Clear(void)  
{  
    uint8_t   i, j;         
    
    /* update display */
    for(i=0;i<8;i++)  
    {  
        OLED_WR_Byte (0xb0+i, OLED_CMD);    // set page address: 0~7
        OLED_WR_Byte (0x00, OLED_CMD);      // set display address, column address lower bytes;ַ
        OLED_WR_Byte (0x10, OLED_CMD);      // set display address, column address higher bytes;
                
        for(j=0; j<128; j++)
            OLED_WR_Byte(0, OLED_DATA); 
    } 
    
    OLED_Set_Pos(0, 0);
}
 
void OLED_On(void)  
{  
    uint8_t   i, j;    
    
    /* update display */
    for(i=0; i<8; i++)  
    {  
        OLED_WR_Byte (0xb0+i, OLED_CMD);    // set page address: 0~7
        OLED_WR_Byte (0x00, OLED_CMD);      // set display address, row address lower bytes;ַ
        OLED_WR_Byte (0x10, OLED_CMD);      // set display address, row address higher bytes;
        
        for(j=0; j<128; j++)
            OLED_WR_Byte(1, OLED_DATA); 
    } 
}
 
void OLED_Init(void)
{     
    if( i2c_init(OLED_I2CBUS, OLED_CHIPADDR) )
    {
        return ;
    }
    
    HAL_Delay(200);
    
    OLED_WR_Byte(0xAE,OLED_CMD); // Disable
    
    OLED_WR_Byte(0x40,OLED_CMD); //---set low column address
    OLED_WR_Byte(0xB0,OLED_CMD); //---set high column address
 
    OLED_WR_Byte(0xC8,OLED_CMD);
 
    OLED_WR_Byte(0x81,OLED_CMD);
    OLED_WR_Byte(0xff,OLED_CMD);
 
    OLED_WR_Byte(0xa1,OLED_CMD);
 
    OLED_WR_Byte(0xa6,OLED_CMD);
    
    OLED_WR_Byte(0xa8,OLED_CMD);
    OLED_WR_Byte(0x1f,OLED_CMD);
    
    OLED_WR_Byte(0xd3,OLED_CMD);
    OLED_WR_Byte(0x00,OLED_CMD);
    
    OLED_WR_Byte(0xd5,OLED_CMD);
    OLED_WR_Byte(0xf0,OLED_CMD);
    
    OLED_WR_Byte(0xd9,OLED_CMD);
    OLED_WR_Byte(0x22,OLED_CMD);
    
    OLED_WR_Byte(0xda,OLED_CMD);
    OLED_WR_Byte(0x02,OLED_CMD);
    
    OLED_WR_Byte(0xdb,OLED_CMD);
    OLED_WR_Byte(0x49,OLED_CMD);
    
    OLED_WR_Byte(0x8d,OLED_CMD);
    OLED_WR_Byte(0x14,OLED_CMD);
    
    OLED_WR_Byte(0xaf,OLED_CMD);
    
    OLED_Clear();
}  
 
/*
 *+-------------------------------------------------+
 *|          OLED display function API              |
 *+-------------------------------------------------+
 */ 
 
/* set OLED display position */
void OLED_Set_Pos(uint8_t x, uint8_t y) 
{     
    OLED_WR_Byte(0xb0+y, OLED_CMD);
    OLED_WR_Byte(((x&0xf0)>>4)|0x10, OLED_CMD);
    OLED_WR_Byte((x&0x0f), OLED_CMD); 
}  
 
/* show a character on OLED as $Char_Size */
void OLED_ShowChar(uint8_t x, uint8_t y, uint8_t chr, uint8_t char_Size)
{  
    uint8_t c=0,i=0;    
    
    c=chr-' ';  // get offset value
 
    if( x>X_WIDTH-1 )
    {
        x=0;
        y=y+2;
    }
    
    if(char_Size ==16)
    {
        OLED_Set_Pos(x,y);    
        
        for(i=0; i<8; i++)
            OLED_WR_Byte(F8X16[c*16+i],OLED_DATA);
        
        OLED_Set_Pos(x,y+1);
        
        for(i=0;i<8;i++)
            OLED_WR_Byte(F8X16[c*16+i+8],OLED_DATA);
    }
    else 
    {    
        OLED_Set_Pos(x,y);
        for(i=0;i<6;i++)
            OLED_WR_Byte(F6x8[c][i],OLED_DATA);
    }
}
 
/* show a string on OLED  */
void OLED_ShowString(uint8_t x, uint8_t y, char *chr, uint8_t font_size)
{
    uint8_t     j=0;
    
    while( chr[j]!='\0' )
    {
        OLED_ShowChar(x, y, chr[j], font_size);
        
        x+=8;
        
        if(x>120)
        {    
            x=0;
            y+=2;
        }
        
        j++;
    }
}
 
/* Show Chinese on OLED */
void OLED_ShowChinese(uint8_t (*Hzk)[32], uint8_t x, uint8_t y, uint8_t no)
{                      
    uint8_t         t,adder=0;
    
    OLED_Set_Pos(x, y);    
    for(t=0;t<16;t++)
    {
        OLED_WR_Byte(Hzk[2*no][t],OLED_DATA);
        adder+=1;
    }    
    
    OLED_Set_Pos(x,y+1);    
    for(t=0;t<16;t++)
    {    
        OLED_WR_Byte(Hzk[2*no+1][t],OLED_DATA);
        adder+=1;
    }                    
}
 
/* Show BMP images(128x64) on OLED, x: 0~127  y:0~7 */
void OLED_DrawBMP(uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1, uint8_t *BMP)
{     
    uint32_t         j=0;
    uint8_t         x,y;
  
    if( y1%8==0 )
        y = y1/8;      
    else
        y = y1/8+1;
    
    for(y=y0; y<y1; y++)
    {
        OLED_Set_Pos(x0, y);
        for(x=x0;x<x1;x++)
        {    
            OLED_WR_Byte(BMP[j++],OLED_DATA);     
        }
    }