19 lines
284 B
C++
19 lines
284 B
C++
#include <Arduino.h>
|
|
#include "lcd.h"
|
|
// put function declarations here:
|
|
int myFunction(int, int);
|
|
|
|
void setup()
|
|
{
|
|
// put your setup code here, to run once:
|
|
lcd_init();
|
|
|
|
LCD_Clear(rand());
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
// put your main code here, to run repeatedly:
|
|
LCD_Clear(rand());
|
|
}
|