diff options
Diffstat (limited to '.door.lua.kak.fs7EK7')
| -rw-r--r-- | .door.lua.kak.fs7EK7 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.door.lua.kak.fs7EK7 b/.door.lua.kak.fs7EK7 new file mode 100644 index 0000000..9a5fbdf --- /dev/null +++ b/.door.lua.kak.fs7EK7 @@ -0,0 +1,16 @@ +local ps={peripheral.find"redstone_integrator"} + +local function set(b) + for _,v in ipairs(ps) do + v.setOutput("top",b) + end +end + + + +while true do + set(true) + os.sleep(2) + set(false) + os.sleep(2) +end |
