OLED 驱动

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2022-04-15 17:38:45 +08:00
parent 61a0c870de
commit 41c3c361ca
28 changed files with 834 additions and 800 deletions
+10 -2
View File
@@ -12,11 +12,19 @@ void mymain()
uint32_t run_tick=0;
OLED_Init();
OLED_ShowStr(0,0,"test");
while(1)
{
OLED_Cache_to_hardware();
if(HAL_GetTick()>run_tick)
{
run_tick+=500;
RUNLED_TICK();
}
}
}