Files
kevin d7c1db0cfd 加入了屏幕驅動
發燒了,下次再寫
Signed-off-by: kevin <wuwenfengmi@outlook.com>
2023-01-01 21:36:10 +08:00

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();
}