14 lines
344 B
Lua
14 lines
344 B
Lua
require("L5")
|
|
|
|
function setup()
|
|
size(480, 320) -- the size of the LCD screen
|
|
windowTitle("Kitchen Timer Mockup")
|
|
-- Sets print command output to display in window
|
|
printToScreen()
|
|
describe('Draws a yellow background!!!!')
|
|
end
|
|
|
|
function draw()
|
|
-- Fills the background with the color yellow
|
|
background(255, 215, 0)
|
|
end
|