risposta

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

Utile (3)
Consegnare
risposta (2)