-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlcdi2c.c
More file actions
492 lines (363 loc) · 10.7 KB
/
Copy pathlcdi2c.c
File metadata and controls
492 lines (363 loc) · 10.7 KB
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
/**
* @file lcdi2c.c
* @brief wifiIO驱动IIC LCD的测试程序
* main函数中定义了两个引脚分别作为SDA和SCL 连接好硬件。将程序以"lcd"的名称运行
* 可以看到LCD 显示文字,同时也可以使用模块web界面 委托接口调试
* @author dy@wifi.io
*/
#include "include.h"
#define BIT_EN 0x04 // Enable bit
#define BIT_RW 0x02 // Read/Write bit
#define BIT_RS 0x01 // Register select bit
#define BIT_BKLT 0x08
#define BIT_NOBKLT 0x00 // flags for backlight control
typedef struct{
void (*init)(wifiIO_gpio_t sda,wifiIO_gpio_t scl, u8_t lcd_Addr,u8_t lcd_cols,u8_t lcd_rows);
void (*print)(char* str);
void(*clear)(void);
void(*home)(void);
void(*noDisplay)(void);
void(*display)(void);
void(*noBlink)(void);
void(*blink)(void);
void(*noCursor)(void);
void(*cursor)(void);
void(*setCursor)(u8_t, u8_t);
void(*scrollDisplayLeft)(void);
void(*scrollDisplayRight)(void);
void(*leftToRight)(void);
void(*rightToLeft)(void);
void(*noBacklight)(void);
void(*backlight)(void);
void(*autoscroll)(void);
void(*noAutoscroll)(void);
void(*createChar)(u8_t, u8_t[]);
}lcd_i2c_api_t;
// commands
#define LCD_CLEARDISPLAY 0x01
#define LCD_RETURNHOME 0x02
#define LCD_ENTRYMODESET 0x04
#define LCD_DISPLAYCONTROL 0x08
#define LCD_CURSORSHIFT 0x10
#define LCD_FUNCTIONSET 0x20
#define LCD_SETCGRAMADDR 0x40
#define LCD_SETDDRAMADDR 0x80
// flags for display entry mode
#define LCD_ENTRYRIGHT 0x00
#define LCD_ENTRYLEFT 0x02
#define LCD_ENTRYSHIFTINCREMENT 0x01
#define LCD_ENTRYSHIFTDECREMENT 0x00
// flags for display on/off control
#define LCD_DISPLAYON 0x04
#define LCD_DISPLAYOFF 0x00
#define LCD_CURSORON 0x02
#define LCD_CURSOROFF 0x00
#define LCD_BLINKON 0x01
#define LCD_BLINKOFF 0x00
// flags for display/cursor shift
#define LCD_DISPLAYMOVE 0x08
#define LCD_CURSORMOVE 0x00
#define LCD_MOVERIGHT 0x04
#define LCD_MOVELEFT 0x00
// flags for function set
#define LCD_8BITMODE 0x10
#define LCD_4BITMODE 0x00
#define LCD_2LINE 0x08
#define LCD_1LINE 0x00
#define LCD_5x10DOTS 0x04
#define LCD_5x8DOTS 0x00
typedef struct{
i2c_sim_dev_t i2c_sim_dev;
u8_t _Addr;
u8_t _displayfunction;
u8_t _displaycontrol;
u8_t _displaymode;
u8_t _numlines;
u8_t _cols;
u8_t _rows;
u8_t _backlightval;
}lcd_i2c_dev_t;
static lcd_i2c_dev_t lcd_i2c_dev;
// ************ low level data pushing commands **********
#define iic_cmd(value) send(value, 0)
#define iic_write(value) send(value, BIT_RS)
void expanderWrite(u8_t dat){
int ret;
dat |= lcd_i2c_dev._backlightval;
ret = i2c_sim.write(&lcd_i2c_dev.i2c_sim_dev, lcd_i2c_dev._Addr, &dat, 1);
if(ret != STATE_OK)
LOG_WARN("expanderWrite err.%d\r\n", ret);
}
void pulseEnable(u8_t dat){
expanderWrite(dat | BIT_EN); // BIT_EN high
api_tim.tim6_poll(1); // enable pulse must be >450ns
expanderWrite(dat & ~BIT_EN); // BIT_EN low
api_tim.tim6_poll(50); // commands need > 37us to settle
}
void write4bits(u8_t value) {
expanderWrite(value);
pulseEnable(value);
}
// write either cmd or data
void send(u8_t value, u8_t mode) {
u8_t highnib=value&0xf0;
u8_t lownib=(value<<4)&0xf0;
write4bits((highnib)|mode);
write4bits((lownib)|mode);
}
// ********** high level commands, for the user!
static void begin(u8_t cols, u8_t lines, u8_t dotsize);
// When the display powers up, it is configured as follows:
//
// 1. Display clear
// 2. Function set:
// DL = 1; 8-bit interface data
// N = 0; 1-line display
// F = 0; 5x8 dot character font
// 3. Display on/off control:
// D = 0; Display off
// C = 0; Cursor off
// B = 0; Blinking off
// 4. Entry mode set:
// I/D = 1; Increment by 1
// S = 0; No shift
void init(wifiIO_gpio_t sda,wifiIO_gpio_t scl, u8_t lcd_Addr,u8_t lcd_cols,u8_t lcd_rows)
{
i2c_sim.init(&lcd_i2c_dev.i2c_sim_dev, sda, scl, 10);
lcd_i2c_dev._Addr = lcd_Addr;
lcd_i2c_dev._cols = lcd_cols;
lcd_i2c_dev._rows = lcd_rows;
lcd_i2c_dev._backlightval = BIT_NOBKLT;
lcd_i2c_dev._displayfunction = LCD_4BITMODE | LCD_1LINE | LCD_5x8DOTS;
begin(lcd_i2c_dev._cols, lcd_i2c_dev._rows, 0);
}
void print(char* str)
{
while(*str)
iic_write(*str++);
}
void clear(void)
{
iic_cmd(LCD_CLEARDISPLAY);// clear display, set cursor position to zero
api_tim.tim6_poll(2000); // this cmd takes a long time!
}
void home(void)
{
iic_cmd(LCD_RETURNHOME); // set cursor position to zero
api_tim.tim6_poll(2000); // this cmd takes a long time!
}
// Turn the display on/off (quickly)
void noDisplay(void)
{
lcd_i2c_dev._displaycontrol &= ~LCD_DISPLAYON;
iic_cmd(LCD_DISPLAYCONTROL | lcd_i2c_dev._displaycontrol);
}
void display(void)
{
lcd_i2c_dev._displaycontrol |= LCD_DISPLAYON;
iic_cmd(LCD_DISPLAYCONTROL | lcd_i2c_dev._displaycontrol);
}
// Turn on and off the blinking cursor
void noBlink(void)
{
lcd_i2c_dev._displaycontrol &= ~LCD_BLINKON;
iic_cmd(LCD_DISPLAYCONTROL | lcd_i2c_dev._displaycontrol);
}
void blink(void){
lcd_i2c_dev._displaycontrol |= LCD_BLINKON;
iic_cmd(LCD_DISPLAYCONTROL | lcd_i2c_dev._displaycontrol);
}
// Turns the underline cursor on/off
void noCursor(void)
{
lcd_i2c_dev._displaycontrol &= ~LCD_CURSORON;
iic_cmd(LCD_DISPLAYCONTROL | lcd_i2c_dev._displaycontrol);
}
void cursor(void)
{
lcd_i2c_dev._displaycontrol |= LCD_CURSORON;
iic_cmd(LCD_DISPLAYCONTROL | lcd_i2c_dev._displaycontrol);
}
void setCursor(u8_t col, u8_t row)
{
int row_offsets[] = { 0x00, 0x40, 0x14, 0x54 };
if ( row > lcd_i2c_dev._numlines ) {
row = lcd_i2c_dev._numlines-1; // we count rows starting w/0
}
iic_cmd(LCD_SETDDRAMADDR | (col + row_offsets[row]));
}
// These commands scroll the display without changing the RAM
void scrollDisplayLeft(void)
{
iic_cmd(LCD_CURSORSHIFT | LCD_DISPLAYMOVE | LCD_MOVELEFT);
}
void scrollDisplayRight(void)
{
iic_cmd(LCD_CURSORSHIFT | LCD_DISPLAYMOVE | LCD_MOVERIGHT);
}
// This is for text that flows Left to Right
void leftToRight(void)
{
lcd_i2c_dev._displaymode |= LCD_ENTRYLEFT;
iic_cmd(LCD_ENTRYMODESET | lcd_i2c_dev._displaymode);
}
// This is for text that flows Right to Left
void rightToLeft(void)
{
lcd_i2c_dev._displaymode &= ~LCD_ENTRYLEFT;
iic_cmd(LCD_ENTRYMODESET | lcd_i2c_dev._displaymode);
}
// Turn the (optional) backlight off/on
void noBacklight(void) {
lcd_i2c_dev._backlightval=BIT_NOBKLT;
expanderWrite(0);
}
void backlight(void) {
lcd_i2c_dev._backlightval=BIT_BKLT;
expanderWrite(0);
}
// This will 'right justify' text from the cursor
void autoscroll(void)
{
lcd_i2c_dev._displaymode |= LCD_ENTRYSHIFTINCREMENT;
iic_cmd(LCD_ENTRYMODESET | lcd_i2c_dev._displaymode);
}
// This will 'left justify' text from the cursor
void noAutoscroll(void)
{
lcd_i2c_dev._displaymode &= ~LCD_ENTRYSHIFTINCREMENT;
iic_cmd(LCD_ENTRYMODESET | lcd_i2c_dev._displaymode);
}
// Allows us to fill the first 8 CGRAM locations
// with custom characters
void createChar(u8_t location, u8_t charmap[])
{
int i;
location &= 0x7; // we only have 8 locations 0-7
iic_cmd(LCD_SETCGRAMADDR | (location << 3));
for (i =0; i<8; i++) {
iic_write(charmap[i]);
}
}
static void begin(u8_t cols, u8_t lines, u8_t dotsize) {
if (lines > 1) {
lcd_i2c_dev._displayfunction |= LCD_2LINE;
}
lcd_i2c_dev._numlines = lines;
// for some 1 line displays you can select a 10 pixel high font
if ((dotsize != 0) && (lines == 1)) {
lcd_i2c_dev._displayfunction |= LCD_5x10DOTS;
}
// SEE PAGE 45/46 FOR INITIALIZATION SPECIFICATION!
// according to datasheet, we need at least 40ms after power rises above 2.7V
// before sending commands. Arduino can turn on way befer 4.5V so we'll wait 50
api_os.tick_sleep(50);
// Now we pull both BIT_RS and R/W low to begin commands
expanderWrite(lcd_i2c_dev._backlightval); // reset expanderand turn backlight off (Bit 8 =1)
api_os.tick_sleep(1000);
//put the LCD into 4 bit mode
// this is according to the hitachi HD44780 datasheet
// figure 24, pg 46
// we start in 8bit mode, try to set 4 bit mode
write4bits(0x03 << 4);
api_tim.tim6_poll(4500); // wait min 4.1ms
// second try
write4bits(0x03 << 4);
api_tim.tim6_poll(4500); // wait min 4.1ms
// third go!
write4bits(0x03 << 4);
api_tim.tim6_poll(150);
// finally, set to 4-bit interface
write4bits(0x02 << 4);
// set # lines, font size, etc.
iic_cmd(LCD_FUNCTIONSET | lcd_i2c_dev._displayfunction);
// turn the display on with no cursor or blinking default
lcd_i2c_dev._displaycontrol = LCD_DISPLAYON | LCD_CURSOROFF | LCD_BLINKOFF;
display();
// clear it off
clear();
// Initialize to default text direction (for roman languages)
lcd_i2c_dev._displaymode = LCD_ENTRYLEFT | LCD_ENTRYSHIFTDECREMENT;
// set the entry mode
iic_cmd(LCD_ENTRYMODESET | lcd_i2c_dev._displaymode);
home();
}
const lcd_i2c_api_t api_lcd_i2c = {
.init = init,
.print = print,
.clear = clear,
.home = home,
.noDisplay = noDisplay,
.display = display,
.noBlink = noBlink,
.blink = blink,
.noCursor = noCursor,
.cursor = cursor,
.setCursor = setCursor,
.scrollDisplayLeft = scrollDisplayLeft,
.scrollDisplayRight = scrollDisplayRight,
.leftToRight = leftToRight,
.rightToLeft = rightToLeft,
.noBacklight = noBacklight,
.backlight = backlight,
.autoscroll = autoscroll,
.noAutoscroll = noAutoscroll,
.createChar = createChar,
};
#define PCF8574_Address 0x4E //PCF8574 I2C地址
////////////////////////////////////////
//每一个addon都有main,该函数在加载后被运行
// 这里适合:
// addon自身运行环境检查;
// 初始化相关数据;
//若返回 非 ADDON_LOADER_GRANTED 将导致函数返回后
//被卸载
//该函数的运行上下文 是wifiIO进程
////////////////////////////////////////
int main(int argc, char* argv[])
{
api_tim.tim6_init(1000000); //初始化定时器6 1us为单位
LOG_INFO("main: lcdi2c attached...\r\n");
api_lcd_i2c.init(WIFIIO_GPIO_01 ,WIFIIO_GPIO_02, PCF8574_Address,16, 2);
api_lcd_i2c.backlight();
// api_lcd_i2c.autoscroll();
api_lcd_i2c.print("Hello world!");
return ADDON_LOADER_GRANTED;
//err_exit:
// return ADDON_LOADER_ABORT;
}
////////////////////////////////////////
// 该函数的运行上下文 是调用该委托接口的进程
// httpd、otd 都可以调用该接口
// 接口名称为 lcd.print
//{
// "method":"lcd.print",
// "params":"0123456789ABCDEF" // 8bytes = 16hexs
//}
////////////////////////////////////////
int JSON_RPC(print)(jsmn_node_t* pjn, fp_json_delegate_ack ack, void* ctx) //继承于fp_json_delegate_start
{
int ret = STATE_OK;
char* err_msg = NULL;
char str[64];
LOG_INFO("DELEGATE lcdi2c.print.\r\n");
//pjn->tkn 正是 "0123456789ABCDEF"
if(NULL == pjn->tkn || JSMN_STRING != pjn->tkn->type ||
STATE_OK != jsmn.tkn2val_str(pjn->js, pjn->tkn, str, sizeof(str), NULL)){ //判断输入json是否合法
ret = STATE_ERROR;
err_msg = "param error.";
LOG_WARN("lcdi2c:%s.\r\n", err_msg);
goto exit_err;
}
LOG_INFO("lcdi2c: %s \r\n", str);
api_lcd_i2c.clear();
api_lcd_i2c.print(str);
//exit_safe:
if(ack)
jsmn.delegate_ack_result(ack, ctx, ret);
return ret;
exit_err:
if(ack)
jsmn.delegate_ack_err(ack, ctx, ret, err_msg);
return ret;
}