lcd.drawPixmap(x, y, name)
Parameters
Return value
Examples
local function run(event)
lcd.clear()
lcd.drawText(1,1,"drawPixmap() example", 0)
lcd.drawPixmap(96, 0, "/bmp/lua.bmp")
end
return{run=run}
Last updated
Was this helpful?