Update drone.lua
This commit is contained in:
parent
867205c1b6
commit
4338cb38f7
|
@ -1,7 +1,3 @@
|
||||||
-- Based off https://oc.cil.li/topic/1570-drone-controll-bios/
|
|
||||||
-- Modified by enthusiasticGeek to give the drone inventory capabilities, as well as the ability to update itself without disassembly.
|
|
||||||
-- Version 0.02
|
|
||||||
|
|
||||||
local fwv = "0.02"
|
local fwv = "0.02"
|
||||||
local d = component.proxy(component.list("drone")())
|
local d = component.proxy(component.list("drone")())
|
||||||
local t = component.proxy(component.list("modem")())
|
local t = component.proxy(component.list("modem")())
|
||||||
|
@ -25,7 +21,7 @@ while true do
|
||||||
if cmd == "gfw" then -- Get Firmware Version
|
if cmd == "gfw" then -- Get Firmware Version
|
||||||
t.broadcast(commport, fwv)
|
t.broadcast(commport, fwv)
|
||||||
end
|
end
|
||||||
if cmd == "ufw" then -- Update Firmware. Essentially stolen from https://github.com/osmarks/oc-drone/
|
if cmd == "ufw" then -- Update Firmware.
|
||||||
local web_request = interweb.request(fwaddress)
|
local web_request = interweb.request(fwaddress)
|
||||||
t.broadcast(commport, "Updating firmware...")
|
t.broadcast(commport, "Updating firmware...")
|
||||||
t.broadcast(commport, " Connecting...")
|
t.broadcast(commport, " Connecting...")
|
||||||
|
@ -96,7 +92,7 @@ while true do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if cmd == "eif" then -- External Inventory Find (Instead of detect)
|
if cmd == "eif" then -- External Inventory Find
|
||||||
local b, s = d.detect(a)
|
local b, s = d.detect(a)
|
||||||
t.broadcast(commport, d.name(),"up",b,s)
|
t.broadcast(commport, d.name(),"up",b,s)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue