This commit is contained in:
2025-12-12 14:29:57 -05:00
parent 06f5605e3d
commit f6dd0bd669
7 changed files with 215 additions and 97 deletions

24
programs/gps.lua Normal file
View File

@@ -0,0 +1,24 @@
local function start()
print("GPS program started.")
end
local function stop()
print("GPS program stopped.")
end
local function restart()
stop()
start()
end
local function main()
print("Chat main loop running...")
while true do
local event = os.pullEvent()
if event == "char" then
print("GPS Char")
end
end
end
return { start = start, stop = stop, restart = restart, main = main }