#include "ssd1306.h"
#include "fonts.h"
I2C_HandleTypeDef hi2c1;
// Init lcd using one of the stm32HAL i2c typedefs
ssd1306_Init(&hi2c1);
// Write data to local screenbuffer
ssd1306_SetCursor(0, 36);
ssd1306_WriteString("4ilo", Font_11x18, White);
// Copy all data from local screenbuffer to the screen
ssd1306_UpdateScreen(&hi2c1);Loading
stm32-bluepill
stm32-bluepill