23 lines
313 B
Arduino
23 lines
313 B
Arduino
#include "Arduino.h"
|
|
#include "src/oled12864.h"
|
|
|
|
|
|
|
|
|
|
void setup() {
|
|
// put your setup code here, to run once:
|
|
Serial.begin(115200);
|
|
Wire.begin();
|
|
OLED_Init();
|
|
|
|
}
|
|
|
|
void loop() {
|
|
// put your main code here, to run repeatedly:
|
|
|
|
OLED_Str(0,0,16,"test",0,1);
|
|
OLED_Cache_to_hardware();
|
|
//OLED_Init();
|
|
|
|
}
|