Advertisement
TIMAS_Bro

Untitled

Oct 9th, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. local mn = peripheral.wrap("front")
  2. local side = "drive_7"
  3. mn.setBackgroundColor(colors.white)
  4. mn.clear()
  5. mn.setCursorPos(1,1)
  6. mn.write("BctaBte")
  7. mn.setCursorPos(1,2)
  8. mn.write("kartu")
  9. -- funcs
  10. local function clear()
  11. mn.clear()
  12. end
  13. local function setTextColor(clr)
  14. mn.setTextColor(clr)
  15. end
  16. local function setCursorPos(x,y)
  17. mn.setCursorPos(x,y)
  18. end
  19. local function setBackgroundColor(clr)
  20. mn.setBackgroundColor(clr)
  21. end
  22. local function write(txt)
  23. mn.write(txt)
  24. end
  25. function drawBT(colorm, txt, line)
  26. NsetBackgroundColor(colorm)
  27. NsetCursorPos(1,line)
  28. for i=1,7 do
  29. NsetBackgroundColor(colorm)
  30. for g=1,2 do
  31. Nwrite(" ")
  32. end
  33. NsetCursorPos(1+i,line)
  34. end
  35. NsetCursorPos(1,line)
  36. Nwrite(txt)
  37. end
  38. -- loop
  39. while true do
  40. local event, side = os.pullEvent()
  41. local cardfile = fs.open("/disk/card","r")
  42. if (cardfile) then
  43. clear()
  44. drawBT(colors.green,"Enter PIN",1)
  45. drawBT(colors.red,"EJECT",4)
  46. else
  47. clear()
  48. setCursorPos(1,2)
  49. setTextColor(colors.red)
  50. setBackgroundColor(colors.white)
  51. write("Eto ne karta!")
  52. disk.eject(side)
  53. end
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement