Files
hantai_project/esp32c3_code/esp32c3_code.ino
T
2025-01-04 23:28:08 +08:00

18 lines
187 B
Arduino

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