HW_Lib/sim/oled/sim_oled.h

44 lines
1.1 KiB
C
Raw Permalink Normal View History

2024-06-22 11:13:18 +00:00
#ifndef HW_LIB_SIM_OLED_H
#define HW_LIB_SIM_OLED_H
#ifdef __cplusplus
extern "C" {
#endif
2024-07-05 15:38:31 +00:00
#include "sim_display.h"
2024-06-22 11:13:18 +00:00
/**
* @brief OLED
2024-06-22 11:26:54 +00:00
* @param width: []
* @param height: []
2024-06-22 11:13:18 +00:00
* @param pixcolor: []
* @param backcolor: []
* @param scale: []
2024-06-22 11:32:13 +00:00
* @param border: []
2024-06-22 11:13:18 +00:00
* @return void
2024-06-22 11:26:54 +00:00
* @example SIM_OLED_INIT(128, 64, 0xFFFF00, 0x000000, 10, 1);
2024-06-22 11:13:18 +00:00
**/
2024-06-22 11:32:13 +00:00
void SIM_OLED_INIT(int width, int height, uint32_t pixcolor, uint32_t backcolor, int scale, uint8_t border);
2024-06-22 11:13:18 +00:00
/**
* @brief OLED
* @return void
* @example SIM_OLED_STOP();
**/
void SIM_OLED_STOP();
/**
* @brief OLED
* @param buf: []
* @param width: []
* @param height: []
* @return void
* @example SIM_OLED_DrawFromBuffer(buffer, 128, 64);
**/
void SIM_OLED_DrawFromBuffer(uint8_t *buf, uint8_t width, uint8_t height);
#ifdef __cplusplus
}
#endif
#endif //HW_LIB_SIM_OLED_H