18 lines
187 B
Arduino
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());
|
|
|
|
}
|