You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
726 B

/** \file app_oled.h */
#if !defined(APP_OLED_H__6B909B42_366E_4E67_91F9_577B515933F7__INCLUDED_)
#define APP_OLED_H__6B909B42_366E_4E67_91F9_577B515933F7__INCLUDED_
#include "board_config.h"
typedef enum
{
OLED_STEP_INIT,
OLED_STEP_POWER_OFF_WAIT,
OLED_STEP_POWER_ON,
OLED_STEP_POWER_ON_WAIT,
OLED_STEP_SET_INIT,
OLED_STEP_NORMAL_SCREEN_SET,
OLED_STEP_DRAW_LOG,
OLED_STEP_WAIT_LOG,
OLED_STEP_LOG_INVERSE,
OLED_STEP_WAIT_LOG_INVERSE,
OLED_STEP_LOG_NORMAL,
OLED_STEP_LOG_LEFT_SCROL,
OLED_STEP_DRAW_BACKGROUND,
OLED_STEP_DRAW_TEMP,
OLED_STEP_ERROR,
}OLED_STEP;
bool Oled_Initialization(void);
bool Oled_SetTemperature(uint16_t Temperature);
#endif