?? guicolor2index.c
字號:
/*************************************************************************************************************
uC/GUI
嵌入式通用圖形軟件
File : GUIColor2Index.C
Purpose : Converts a RGB-value to a color index
************************************************************************************************************/
#include "GUI_Protected.H"
int GUI_Color2Index(GUI_COLOR Color)
{
int Index;
GUI_LOCK();
Index = LCD_Color2Index(Color);
GUI_UNLOCK();
return Index;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -