mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-30 21:12:55 +08:00
6926c66b16
* Add missing globals from luacheck config * Fix luacheck warnings in all lua files * Re-enable luacheck in Travis * Speed up Travis by using preinstalled LuaRocks * Fix more luacheck warnings in httpserver lua module * Fix DCC module and add appropriate definitions to luacheck config. * Change inline comments from ignoring block to only ignore specific line * Add Luacheck for Windows and enable it for both Windows and Linux * Change luacheck exceptions and fix errors from 1st round of polishing * Add retry and timeout params to wget
61 lines
1.5 KiB
Lua
61 lines
1.5 KiB
Lua
-- luacheck: globals T r disp millis lcg_rnd
|
|
local M, module = {}, ...
|
|
_G[module] = M
|
|
|
|
function M.run()
|
|
-- make this a volatile module:
|
|
package.loaded[module] = nil
|
|
|
|
print("Running component fonts...")
|
|
|
|
local d = 5
|
|
|
|
disp:setColor(0, 0, 40, 80)
|
|
disp:setColor(1, 150, 0, 200)
|
|
disp:setColor(2, 60, 0, 40)
|
|
disp:setColor(3, 0, 160, 160)
|
|
|
|
disp:drawGradientBox(0, 0, disp:getWidth(), disp:getHeight())
|
|
|
|
disp:setColor(255, 255, 255)
|
|
disp:setPrintDir(0)
|
|
disp:setPrintPos(2,18)
|
|
disp:print("Fonts")
|
|
|
|
disp:setFontMode(ucg.FONT_MODE_TRANSPARENT)
|
|
|
|
disp:setColor(255, 200, 170)
|
|
disp:setFont(ucg.font_helvB08_hr)
|
|
disp:setPrintPos(2,30+d)
|
|
disp:print("ABC abc 123")
|
|
disp:setFont(ucg.font_helvB10_hr)
|
|
disp:setPrintPos(2,45+d)
|
|
disp:print("ABC abc 123")
|
|
disp:setFont(ucg.font_helvB12_hr)
|
|
--disp:setPrintPos(2,62+d)
|
|
--disp:print("ABC abc 123")
|
|
disp:drawString(2,62+d, 0, "ABC abc 123") -- test drawString
|
|
|
|
disp:setFontMode(ucg.FONT_MODE_SOLID)
|
|
|
|
disp:setColor(255, 200, 170)
|
|
disp:setColor(1, 0, 100, 120) -- background color in solid mode
|
|
disp:setFont(ucg.font_helvB08_hr)
|
|
disp:setPrintPos(2,75+30+d)
|
|
disp:print("ABC abc 123")
|
|
disp:setFont(ucg.font_helvB10_hr)
|
|
disp:setPrintPos(2,75+45+d)
|
|
disp:print("ABC abc 123")
|
|
disp:setFont(ucg.font_helvB12_hr)
|
|
disp:setPrintPos(2,75+62+d)
|
|
disp:print("ABC abc 123")
|
|
|
|
disp:setFontMode(ucg.FONT_MODE_TRANSPARENT)
|
|
|
|
disp:setFont(ucg.font_ncenR14_hr)
|
|
|
|
print("...done")
|
|
end
|
|
|
|
return M
|