So i'm playing around with the cassette tapes and tape drive in computronics and I made a code to loop back audio it keeps returning false
while true do
if tape_drive.getPosition() > tape_drive.getSize() then
print("Tape has ended, rewinding")
tape_drive.seek(-tape_drive.getSize())
end
print("Sleeping" .. tape_drive.getPosition())
sleep(1)
end
I'm not using tape_drive.isEnd() because it's not that reliable oh and also code excluding the requires i did add them in my actual code but this is the problematic part
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
So i'm playing around with the cassette tapes and tape drive in computronics and I made a code to loop back audio it keeps returning false
while true do
if tape_drive.getPosition() > tape_drive.getSize() then
print("Tape has ended, rewinding")
tape_drive.seek(-tape_drive.getSize())
end
print("Sleeping" .. tape_drive.getPosition())
sleep(1)
end
I'm not using tape_drive.isEnd() because it's not that reliable oh and also code excluding the requires i did add them in my actual code but this is the problematic part
Link to post
Share on other sites