I added this .96” OLED display to an Amazon order ( To get free postage ) was not expecting a struggle to get that “Hello” moment .
Turns out plenty of device information around just none I could find attached to PIC mcu. I don’t do anything ending in …..uino but I gleaned bits from the various sites to get the hang of the displays control etc.
There would appear to be several variations of build, and how the SSD1306 driver chip is is incorporated, not all displays have ready to go I2C standards. I just had to keep trying , I do not use an I2C library . This build will run 3.3 to 5v Vcc , I2C pullups were not required, it has 2 address options , my code shifts address left <1 for w/r bit so starts off at H’3C . Acknowledge of bytes back to master may be a problem , but not with this version. I managed to dump a 5x7 font down the wires (as shown) from a PIC24EP512GU810, These are the init commands that worked for me.

Turns out plenty of device information around just none I could find attached to PIC mcu. I don’t do anything ending in …..uino but I gleaned bits from the various sites to get the hang of the displays control etc.
There would appear to be several variations of build, and how the SSD1306 driver chip is is incorporated, not all displays have ready to go I2C standards. I just had to keep trying , I do not use an I2C library . This build will run 3.3 to 5v Vcc , I2C pullups were not required, it has 2 address options , my code shifts address left <1 for w/r bit so starts off at H’3C . Acknowledge of bytes back to master may be a problem , but not with this version. I managed to dump a 5x7 font down the wires (as shown) from a PIC24EP512GU810, These are the init commands that worked for me.
Code:
void Init_OLED()
{
/*******************WRITE_COMMAND***********************/
WRITE_COMMAND(0xAE); //display off
WRITE_COMMAND(0x20); //Set Memory Addressing Mode
WRITE_COMMAND(0x10); //00,Horizontal Addressing Mode;01,Vertical Addressing Mode;10,Page Addressing Mode (RESET);11,Invalid
WRITE_COMMAND(0xb0); //Set Page Start Address for Page Addressing Mode,0-7
WRITE_COMMAND(0xc8); //Set COM Output Scan Direction
WRITE_COMMAND(0x00);//---set low column address
WRITE_COMMAND(0x10);//---set high column address
WRITE_COMMAND(0x40);//--set start line address
WRITE_COMMAND(0x81);//--set contrast control register
WRITE_COMMAND(0x7f);
WRITE_COMMAND(0xa1);//--set segment re-map 0 to 127
WRITE_COMMAND(0xa6);//--set normal display
WRITE_COMMAND(0xa8);//--set multiplex ratio(1 to 64)
WRITE_COMMAND(0x3F);//
WRITE_COMMAND(0xa4);//0xa4,Output follows RAM content;0xa5,Output ignores RAM content
WRITE_COMMAND(0xd3);//-set display offset
WRITE_COMMAND(0x00);//-not offset
WRITE_COMMAND(0xd5);//--set display clock divide ratio/oscillator frequency
WRITE_COMMAND(0xf0);//--set divide ratio
WRITE_COMMAND(0xd9);//--set pre-charge period
WRITE_COMMAND(0x22); //
WRITE_COMMAND(0xda);//--set com pins hardware configuration
WRITE_COMMAND(0x12);
WRITE_COMMAND(0xdb);//--set vcomh
WRITE_COMMAND(0x20);//0x20,0.77xVcc
WRITE_COMMAND(0x8d);//--set DC-DC enable
WRITE_COMMAND(0x14);//
WRITE_COMMAND(0xaf);//--turn on oled panel
}
