i2C operating frequency of CFAL12832C0-091B-W

Sowmiya

New member
Team ,

Could you please help me with the operating i2C frequency range of CFAL12832C0-091B-W. Its urgent .Pls assist
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.
 

CF Kelsey

Administrator
Staff member
The frequency will depend on how you initialize the display. There is information about how different settings affect the frequency on page 22 of the controller datasheet: https://www.crystalfontz.com/controllers/Solomon Systech/SSD1306

In our demo code we demonstrate this:

//Set the clock speed, nominal ~105FPS
//Low nibble is divide ratio
//High level is oscillator frequency
sendcommand(SSD1306B_CLOCK_DIVIDE_PREFIX_D5);
sendcommand(0x80);//177Hz measured
 
Top