PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
Re: OLED 128x64 SSD1306 I2C PIC16F1788 driver |
Posted: Mon Jul 16, 2018 5:48 pm |
|
|
srikrishna wrote: |
1. What is 0x78 in #define OLED 0x78??
|
It's the i2c address for the OLED display.
srikrishna wrote: |
2. How to use the library with other program ??
|
This OLED driver is based on the CCS driver file glcd.c, so look at the CCS
example file ex_glcd.c to see how to use the driver. The names of the
functions are similar in both drivers.
srikrishna wrote: |
3.What does the line mean #device PASS_STRINGS = IN_RAM |
This is in the CCS manual. Look on page 136:
https://www.ccsinfo.com/downloads/ccs_c_manual.pdf |
|