Create linkedGet.lua

This commit is contained in:
erius0 2021-01-08 02:30:28 +03:00 committed by GitHub
parent e08000914d
commit b24660c1a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
linkedGet.lua Normal file
View file

@ -0,0 +1,9 @@
local event = require("event")
local keyboard = require("keyboard")
local component = require("component")
local tunnel = component.tunnel
while true do
local _, _, _, _, _, message = event.pull("modem_message")
print(message)
tunnel.send("succes!")
end