rename oled file

This commit is contained in:
2023-03-07 22:12:21 +01:00
parent a7749c08ef
commit e5a6bff29c
5 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
#include "ufb/framebuffer.h"
#include "iwdg.h"
#include "oled.h"
#include "app_oled.h"
#include "ufb/fb_text.h"
#include "app_temp.h"
#include "app_knob.h"
+19
View File
@@ -0,0 +1,19 @@
//
// Created by MightyPork on 2022/12/28.
//
#ifndef TEST_PROJECT_OLED_H
#define TEST_PROJECT_OLED_H
#include <stdint.h>
#include <stddef.h>
void oled_init();
void oled_reset();
void oled_command(uint8_t cmd);
void oled_command16(uint8_t cmd, uint8_t arg);
void oled_invert(bool invert);
void oled_data(uint8_t *data, size_t len);
#endif //TEST_PROJECT_OLED_H
+1 -1
View File
@@ -30,7 +30,7 @@
/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
#include "ufb/framebuffer.h"
#include "oled.h"
#include "app_oled.h"
#include <stdio.h>