15 lines
242 B
C++
15 lines
242 B
C++
#include <Arduino.h>
|
|
#include <SPI.h> //for screen
|
|
#include <U8g2lib.h> //for screen
|
|
#include <stdlib.h>
|
|
|
|
|
|
void setup() {
|
|
// put your setup code here, to run once:
|
|
|
|
}
|
|
|
|
void loop() {
|
|
// put your main code here, to run repeatedly:
|
|
|
|
}
|