Advertisement
pleasedontcode

**Smart Lock** rev_61

Oct 5th, 2024
62
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: **Smart Lock**
  13.     - Source Code NOT compiled for: Arduino Nano ESP32
  14.     - Source Code created on: 2024-10-05 14:19:40
  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. /****** DEFINITION OF LIBRARIES *****/
  31. #include <Deneyap_Servo.h>  // Library for controlling servo motors
  32. #include <Keypad.h> // Library for keypad input
  33. #include <WiFi.h>       // Library for WiFi connectivity
  34. #include <WebServer.h>  // Library for web server functionality
  35.  
  36. /****** FUNCTION PROTOTYPES *****/
  37. void setup(void);
  38. void loop(void);
  39. void handleRoot(); // Function to handle root URL
  40.  
  41. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  42. const uint8_t keypad_Keypad3x4_R1_PIN_D4 = 4;
  43. const uint8_t keypad_Keypad3x4_R2_PIN_D5 = 5;
  44. const uint8_t keypad_Keypad3x4_R3_PIN_D6 = 6;
  45. const uint8_t keypad_Keypad3x4_R4_PIN_D7 = 7;
  46.  
  47. /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
  48. const uint8_t keypad_Keypad3x4_C1_PIN_D8 = 8;
  49. const uint8_t keypad_Keypad3x4_C2_PIN_D9 = 9;
  50. const uint8_t keypad_Keypad3x4_C3_PIN_D10 = 10;
  51.  
  52. /***** DEFINITION OF KEYPAD VARIABLES *****/
  53. const uint8_t KEYPAD3X4_ROWS = 4; // four rows
  54. const uint8_t KEYPAD3X4_COLS = 3; // three columns
  55. char Keys_Keypad3x4[KEYPAD3X4_ROWS][KEYPAD3X4_COLS] = {
  56.     {'1','2','3'},
  57.     {'4','5','6'},
  58.     {'7','8','9'},
  59.     {'*','0','#'},
  60. };
  61.  
  62. Keypad keypad = Keypad(makeKeymap(Keys_Keypad3x4), keypad_Keypad3x4_R1_PIN_D4, keypad_Keypad3x4_C1_PIN_D8, KEYPAD3X4_ROWS, KEYPAD3X4_COLS);
  63. Servo doorServo; // Servo object for door lock
  64. WebServer server(80); // Create a web server on port 80
  65.  
  66. // Define the correct PIN code
  67. const String correctPIN = "1234"; // Example PIN code
  68. String enteredPIN = ""; // Variable to store entered PIN
  69. bool isLocked = true; // Initial state of the door
  70.  
  71. void setup(void)
  72. {
  73.     // Initialize the servo motor
  74.     doorServo.attach(9); // Attach the servo to pin 9
  75.     doorServo.write(isLocked ? 0 : 90); // Lock the door initially
  76.  
  77.     // Setup keypad pins
  78.     pinMode(keypad_Keypad3x4_R1_PIN_D4, INPUT_PULLUP);
  79.     pinMode(keypad_Keypad3x4_R2_PIN_D5, INPUT_PULLUP);
  80.     pinMode(keypad_Keypad3x4_R3_PIN_D6, INPUT_PULLUP);
  81.     pinMode(keypad_Keypad3x4_R4_PIN_D7, INPUT_PULLUP);
  82.    
  83.     // Setup WiFi connection
  84.     WiFi.begin("yourSSID", "yourPASSWORD"); // Replace with your WiFi credentials
  85.     while (WiFi.status() != WL_CONNECTED) {
  86.         delay(1000);
  87.     }
  88.    
  89.     // Start the web server
  90.     server.on("/", handleRoot); // Handle root URL
  91.     server.begin(); // Start the server
  92. }
  93.  
  94. void loop(void)
  95. {
  96.     // Check for keypad input
  97.     char key = keypad.getKey();
  98.     if (key) {
  99.         if (key == '#') { // If '#' is pressed, check the entered PIN
  100.             if (enteredPIN == correctPIN) {
  101.                 // Toggle lock state
  102.                 isLocked = !isLocked;
  103.                 doorServo.write(isLocked ? 0 : 90); // Lock or unlock the door
  104.             }
  105.             enteredPIN = ""; // Reset entered PIN
  106.         } else if (key == '*') { // If '*' is pressed, reset the entered PIN
  107.             enteredPIN = "";
  108.         } else {
  109.             enteredPIN += key; // Append the key to the entered PIN
  110.         }
  111.     }
  112.  
  113.     // Handle web server requests
  114.     server.handleClient();
  115. }
  116.  
  117. void handleRoot() {
  118.     // Serve the HTML content
  119.     String html = "<html><body><h1>Door Lock System</h1>";
  120.     html += "<p>The door is currently " + String(isLocked ? "Locked" : "Unlocked") + "</p>";
  121.     html += "</body></html>";
  122.     server.send(200, "text/html", html); // Send the HTML response
  123. }
  124.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement