added references to future variables

This commit is contained in:
mint 2021-05-06 00:20:44 -04:00
parent a2eae16921
commit 89b5245e56
1 changed files with 8 additions and 2 deletions

View File

@ -3,12 +3,18 @@ local buttonColor = colors.lightGray
local backgroundColor = colors.black local backgroundColor = colors.black
local drive = peripheral.getType("disk_drive") local drive = peripheral.getType("disk_drive")
function playDisk() function playDisc()
disk.playAudio(drive) disk.playAudio(drive)
end end
function ejectDisc()
end
function stopDisc
end
if disk.isPresent(drive) and disk.hasAudio(drive) then if disk.isPresent(drive) and disk.hasAudio(drive) then
playDisk(drive) playDisc(drive)
elseif disk.isPresent() then elseif disk.isPresent() then
print "Not a music disc" print "Not a music disc"
else else