Files
hantai_project/esp32c3_code/esp32c3_code.ino
T
kevin 5c7974a773 优化一下
Signed-off-by: kevin <kevin@lmve.net>
2025-12-23 22:19:38 +08:00

18 lines
201 B
Arduino

#include "lcd.h"
void setup() {
// put your setup code here, to run once:
//delay(1000);
lcd_init();
}
void loop() {
// put your main code here, to run repeatedly:
LCD_Clear(rand());
}