TIMAS_Bro

keypad

Oct 22nd, 2023 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. -- Variables -----------------------------------------------
  2. local password = "111"
  3. local keypadtable = {{3,2,"1"}, {4,2,"2"}, {5,2,"3"}, {3,3,"4"}, {4,3,"5"}, {5,3,"6"}, {3,4,"7"}, {4,4,"8"}, {5,4,"9"}}
  4. local dooropendelay = 4
  5. local errordelay = 3
  6. local monitorlocation = 'left'
  7. local redstonesignalside = 'back'
  8.  
  9. ------------------------------------------------------------
  10.  
  11. local monitor = peripheral.find("monitor")
  12. local maxx, maxy = monitor.getSize()
  13.  
  14. local function idleScreen ()
  15. monitor.clear()
  16. monitor.setCursorPos(2,2)
  17. monitor.write("Enter")
  18. monitor.setCursorPos(3,3)
  19. monitor.write("PIN")
  20. end
  21.  
  22. local function loginOK ()
  23. monitor.clear()
  24. monitor.setCursorPos(1,3)
  25. monitor.write("Welcome")
  26. end
  27.  
  28. local function loginFail ()
  29. monitor.clear()
  30. monitor.setCursorPos(2,3)
  31. monitor.write("Error")
  32. end
  33.  
  34. local function printKeyPad ()
  35. monitor.clear()
  36. print("Printing keypad screen")
  37. for i=1,#keypadtable do
  38. monitor.setCursorPos(keypadtable[i][1],keypadtable[i][2])
  39. monitor.write(keypadtable[i][3])
  40. end
  41. end
  42.  
  43. local function getKeyFromPad (xclick, yclick)
  44. for i=1,#keypadtable do
  45. if ((keypadtable[i][1] == xclick) and (keypadtable[i][2] == yclick)) then
  46. return (keypadtable[i][3])
  47. end
  48. end
  49. return ('')
  50. end
  51.  
  52. local function openDoor ()
  53. redstone.setOutput (redstonesignalside, true)
  54. os.sleep(0.1)
  55. redstone.setOutput(redstonesignalside,false)
  56. end
  57.  
  58. local function closeDoor ()
  59. redstone.setOutput(redstonesignalside, true)
  60. os.sleep(0.1)
  61. redstone.setOutput(redstonesignalside,false)
  62. end
  63.  
  64. -- MAIN ------------------------------------------------------------
  65.  
  66. while true do
  67. idleScreen()
  68. local pwentered = ''
  69.  
  70. -- Get first keypress and show pinpad
  71. event, side, xpos, ypos = os.pullEvent("monitor_touch")
  72. if side == "left" then
  73. print ('* Starting keypad entry')
  74. printKeyPad()
  75. end
  76.  
  77. while (tonumber(string.len(pwentered)) < tonumber(string.len(password))) do
  78. local pressed = ''
  79. local event, monside, xpos, ypos = os.pullEvent()
  80.  
  81. if event == 'monitor_touch' then
  82. local pressed = tostring(getKeyFromPad (xpos, ypos))
  83. if pressed ~= "" then
  84. pwentered = pwentered .. pressed
  85. monitor.setCursorPos(1,1)
  86. monitor.write(pwentered)
  87. print ("* Pressed: " .. pressed)
  88. end
  89. end
  90. end
  91.  
  92. if (pwentered == password) then
  93. print ('* Login SUCCESS')
  94. loginOK()
  95. openDoor()
  96. os.sleep(dooropendelay)
  97. closeDoor()
  98. else
  99. print ('* Login FAIL')
  100. loginFail ()
  101. sleep (errordelay)
  102. end
  103. end
Add Comment
Please, Sign In to add comment