Advertisement
pleasedontcode

**Keypad Control** rev_55

Oct 5th, 2024
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: **Keypad Control**
  13.     - Source Code NOT compiled for: Arduino Nano ESP32
  14.     - Source Code created on: 2024-10-05 08:31:11
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* The servo motor installed in the door will lock or */
  21.     /* unlock based on the correct PIN code received by */
  22.     /* the button. If the door is unlocked and the PIN is */
  23.     /* correct, it will lock. If the door is locked and */
  24.     /* the PIN is correct, it will unlock. */
  25. /****** SYSTEM REQUIREMENT 2 *****/
  26.     /* The webserver provides a web page about lock or */
  27.     /* unlock state of the door. */
  28. /****** END SYSTEM REQUIREMENTS *****/
  29.  
  30.  
  31. /********* User code review feedback **********
  32. #### Feedback 1 ####
  33. - put a physical button to enable introduction of pin in keypad
  34. ********* User code review feedback **********/
  35.  
  36. /****** DEFINITION OF LIBRARIES *****/
  37. #include <Deneyap_Servo.h>  // Library to control servo motors
  38. #include <Keypad.h>         // Library to handle keypad input
  39. #include <WiFi.h>          // Library for WiFi connectivity
  40. #include <WebServer.h>      // Library to create a web server
  41.  
  42. /****** FUNCTION PROTOTYPES *****/
  43. void setup(void);
  44. void loop(void);
  45. void handleRoot(void);
  46. void checkKeypad(void);
  47.  
  48. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  49. const uint8_t keypad_Keypad3x4_R1_PIN_D4 = 4;
  50. const uint8_t keypad_Keypad3x4_R2_PIN_D5 = 5;
  51. const uint8_t keypad_Keypad3x4_R3_PIN_D6 = 6;
  52. const uint8_t keypad_Keypad3x4_R4_PIN_D7 = 7;
  53. const uint8_t buttonPin = 2; // Physical button pin
  54.  
  55. /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
  56. const uint8_t keypad_Keypad3x4_C1_PIN_D8 = 8;
  57. const uint8_t keypad_Keypad3x4_C2_PIN_D9 = 9;
  58. const uint8_t keypad_Keypad3x4_C3_PIN_D10 = 10;
  59.  
  60. /***** DEFINITION OF KEYPAD VARIABLES *****/
  61. const uint8_t KEYPAD3X4_ROWS = 4; // four rows
  62. const uint8_t KEYPAD3X4_COLS = 3; // three columns
  63. char Keys_Keypad3x4[KEYPAD3X4_ROWS][KEYPAD3X4_COLS] = {
  64.     {'1', '2', '3'},
  65.     {'4', '5', '6'},
  66.     {'7', '8', '9'},
  67.     {'*', '0', '#'},
  68. };
  69.  
  70. // Create keypad object
  71. Keypad keypad = Keypad(makeKeymap(Keys_Keypad3x4),
  72.                        new byte[KEYPAD3X4_ROWS]{keypad_Keypad3x4_R1_PIN_D4, keypad_Keypad3x4_R2_PIN_D5, keypad_Keypad3x4_R3_PIN_D6, keypad_Keypad3x4_R4_PIN_D7},
  73.                        new byte[KEYPAD3X4_COLS]{keypad_Keypad3x4_C1_PIN_D8, keypad_Keypad3x4_C2_PIN_D9, keypad_Keypad3x4_C3_PIN_D10},
  74.                        KEYPAD3X4_ROWS, KEYPAD3X4_COLS);
  75.  
  76. // Create servo object
  77. Servo doorServo;
  78.  
  79. // WiFi and web server setup
  80. const char* ssid = "your_SSID"; // Replace with your WiFi SSID
  81. const char* password = "your_PASSWORD"; // Replace with your WiFi password
  82. WebServer server(80);
  83.  
  84. bool doorLocked = true; // Initial state of the door
  85. const char* correctPin = "1234"; // Correct PIN code
  86. bool pinEntryEnabled = false; // Flag to check if PIN entry is enabled
  87.  
  88. void setup(void) {
  89.     // Initialize pins
  90.     pinMode(keypad_Keypad3x4_R1_PIN_D4, INPUT_PULLUP);
  91.     pinMode(keypad_Keypad3x4_R2_PIN_D5, INPUT_PULLUP);
  92.     pinMode(keypad_Keypad3x4_R3_PIN_D6, INPUT_PULLUP);
  93.     pinMode(keypad_Keypad3x4_R4_PIN_D7, INPUT_PULLUP);
  94.    
  95.     pinMode(keypad_Keypad3x4_C1_PIN_D8, OUTPUT);
  96.     pinMode(keypad_Keypad3x4_C2_PIN_D9, OUTPUT);
  97.     pinMode(keypad_Keypad3x4_C3_PIN_D10, OUTPUT);
  98.    
  99.     pinMode(buttonPin, INPUT_PULLUP); // Initialize button pin
  100.  
  101.     // Attach servo to pin
  102.     doorServo.attach(3); // Attach servo to pin 3
  103.  
  104.     // Start WiFi
  105.     WiFi.begin(ssid, password);
  106.     while (WiFi.status() != WL_CONNECTED) {
  107.         delay(1000);
  108.     }
  109.  
  110.     // Start web server
  111.     server.on("/", handleRoot);
  112.     server.begin();
  113. }
  114.  
  115. void loop(void) {
  116.     server.handleClient(); // Handle web server requests
  117.     checkKeypad(); // Check for keypad input
  118.  
  119.     // Check if the button is pressed to enable PIN entry
  120.     if (digitalRead(buttonPin) == LOW) {
  121.         pinEntryEnabled = true; // Enable PIN entry when button is pressed
  122.         delay(500); // Debounce delay
  123.     }
  124. }
  125.  
  126. void handleRoot(void) {
  127.     String state = doorLocked ? "Locked" : "Unlocked";
  128.     String message = "<html><body><h1>Door is " + state + "</h1></body></html>";
  129.     server.send(200, "text/html", message);
  130. }
  131.  
  132. void checkKeypad(void) {
  133.     char key = keypad.getKey();
  134.     static String inputPin = "";
  135.  
  136.     if (pinEntryEnabled) { // Only check keypad if PIN entry is enabled
  137.         if (key) {
  138.             if (key == '#') {
  139.                 // Check if the entered PIN is correct
  140.                 if (inputPin == correctPin) {
  141.                     doorLocked = !doorLocked; // Toggle door state
  142.                     doorServo.write(doorLocked ? 0 : 90); // Lock or unlock the door
  143.                 }
  144.                 inputPin = ""; // Reset input
  145.             } else if (key == '*') {
  146.                 inputPin = ""; // Clear input
  147.             } else {
  148.                 inputPin += key; // Append key to input
  149.             }
  150.         }
  151.     }
  152. }
  153.  
  154. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement