mirror of
https://github.com/opentx/opentx.git
synced 2025-07-16 04:45:17 +03:00
Enables lcd.drawGauge on Horus (#3487)
* Enables lcd.drawGauge on Horus * cosmetic, unsigned, and add flags
This commit is contained in:
parent
f46ff84845
commit
e55a84d8b7
1 changed files with 6 additions and 6 deletions
|
@ -415,9 +415,9 @@ static int luaLcdDrawFilledRectangle(lua_State *L)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#if !defined(COLORLCD)
|
||||
|
||||
/*luadoc
|
||||
@function lcd.drawGauge(x, y, w, h, fill, maxfill)
|
||||
@function lcd.drawGauge(x, y, w, h, fill, maxfill [, flags])
|
||||
|
||||
Draw a simple gauge that is filled based upon fill value
|
||||
|
||||
|
@ -444,13 +444,13 @@ static int luaLcdDrawGauge(lua_State *L)
|
|||
int h = luaL_checkinteger(L, 4);
|
||||
int num = luaL_checkinteger(L, 5);
|
||||
int den = luaL_checkinteger(L, 6);
|
||||
// int flags = luaL_checkinteger(L, 7);
|
||||
unsigned int flags = luaL_optunsigned(L, 7, 0);
|
||||
lcdDrawRect(x, y, w, h);
|
||||
uint8_t len = limit((uint8_t)1, uint8_t(w*num/den), uint8_t(w));
|
||||
lcdDrawSolidFilledRect(x+1, y+1, len, h-2);
|
||||
lcdDrawSolidFilledRect(x+1, y+1, len, h-2, flags);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#if !defined(COLORLCD)
|
||||
/*luadoc
|
||||
|
@ -590,12 +590,12 @@ const luaL_Reg lcdLib[] = {
|
|||
{ "drawChannel", luaLcdDrawChannel },
|
||||
{ "drawSwitch", luaLcdDrawSwitch },
|
||||
{ "drawSource", luaLcdDrawSource },
|
||||
{ "drawGauge", luaLcdDrawGauge },
|
||||
#if defined(COLORLCD)
|
||||
{ "setColor", luaLcdSetColor },
|
||||
{ "RGB", luaRGB },
|
||||
#else
|
||||
{ "getLastPos", luaLcdGetLastPos },
|
||||
{ "drawGauge", luaLcdDrawGauge },
|
||||
{ "drawPixmap", luaLcdDrawPixmap },
|
||||
{ "drawScreenTitle", luaLcdDrawScreenTitle },
|
||||
{ "drawCombobox", luaLcdDrawCombobox },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue