We sincerely invite you to subscribe to the Invite Answer email!
If you subscribe, we will invite you via email to answer questions people have about products. By subscribing you’ll also earn the "Helpful Badge"! You can unsubscribe at any time on the privacy settings page.
Help others and be happier!
Faierfocs10 Wait.... Colors are encoded in RGB_565 format, meaning that in a 16bit half-word data we have:The first 5 bits are red, then 6 bits of green and the last 5 bits are of blue.Given that, check the oled screen intialization routine of the library you're using: if you see something like:LCD_WR_REG(0x36); --- 0x36 is the command numberLCD_WR_DATA(0x08); ---- 0x08 is the command argument (a configuration, basically)Here the fourth bit in the
2020-08-30 08:20:51 Helpful (0)