Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Načtení periférií
- local modem = peripheral.wrap("top") -- Připojení ender modemu
- local camera = peripheral.wrap("back") -- Připojení kamery
- -- Nastavení parametrů obrazovky
- local resolution_width = 160 -- Šířka obrazovky
- local resolution_height = 50 -- Výška obrazovky
- -- Funkce pro načtení snímku obrazovky z kamery
- function takePicture()
- local imageData = camera.snapshot()
- local image = paintutils.createImage(imageData, "rgba", resolution_width, resolution_height)
- return image
- end
- -- Funkce pro odeslání obrazu přes ender modem
- function sendImage(image)
- local serializedImage = textutils.serialize(image)
- modem.transmit(1, 1, serializedImage)
- end
- -- Hlavní smyčka programu
- while true do
- local image = takePicture()
- sendImage(image)
- sleep(1) -- Čekání jednu sekundu
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement