NHD-1.69-160128UGC3 with STM32F0

Comments

1 comment

  • Paul_B

    Hello,

    First, I recommend you look over the ”Instruction Description” in the controllers datasheet (Page 17):

    https://newhavendisplay.com/content/app_notes/SEPS525.pdf 

    You can increase the brightness by adjusting the Driving_Current registers for Red, Green and Blue.

    //NHD Recommended -  driving current r g b (uA)
        OLED_Command_160128RGB(0x10);
        OLED_Data_160128RGB(0x45);
        OLED_Command_160128RGB(0x11);
        OLED_Data_160128RGB(0x34);
        OLED_Command_160128RGB(0x12);
        OLED_Data_160128RGB(0x33);

    //MAX - driving current r g b (uA)
        OLED_Command_160128RGB(0x10);
        OLED_Data_160128RGB(0xFF);
        OLED_Command_160128RGB(0x11);
        OLED_Data_160128RGB(0xFF);
        OLED_Command_160128RGB(0x12);
        OLED_Data_160128RGB(0xFF);

    Please note that when you increase the brightness of any display this will reduce the lifetime.

    Hope this helps!

    0

Please sign in to leave a comment.