Skip to content

Commit 579c279

Browse files
authored
Update readme
Update information for use with Arduino IDE
1 parent a0525ae commit 579c279

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

readme

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ If you want to use your own I2C library you have to fit i2c-function at lcd-libr
88
Settings for I2C-bus have to set at i2c.h
99
Settings for display have to set at lcd.h
1010

11-
exampel:
11+
If you want to use characters like e.g. ä set your compiler input-charset to utf-8 and your compiler exec-charset to iso-8859-15 (look at makefile line 115).
12+
13+
example:
1214

1315
//****main.c****//
1416
#include "lcd.h"
@@ -29,3 +31,13 @@ int main(void){
2931
}
3032
return 0;
3133
}
34+
35+
For Arduino-Users:
36+
37+
Remember that this library is a c-library. Type
38+
39+
extern "C"{
40+
#include "lcd.h"
41+
}
42+
43+
for include.

0 commit comments

Comments
 (0)