Advertisement
pleasedontcode

**Lock Control** rev_60

Oct 5th, 2024
60
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: **Lock Control**
  13.     - Source Code NOT compiled for: Arduino Nano ESP32
  14.     - Source Code created on: 2024-10-05 14:11:36
  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 creating a web server
  35.  
  36. /****** FUNCTION PROTOTYPES *****/
  37. void setup(void);
  38. void loop(void);
  39. void updateOutputs();
  40. void handleRoot();           // Function to handle root URL
  41. void handleUnlock();        // Function to handle unlocking
  42. void handleLock();          // Function to handle locking
  43.  
  44. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  45. const uint8_t keypad_Keypad3x4_R1_PIN_D4 = 4;
  46. const uint8_t keypad_Keypad3x4_R2_PIN_D5 = 5;
  47. const uint8_t keypad_Keypad3x4_R3_PIN_D6 = 6;
  48. const uint8_t keypad_Keypad3x4_R4_PIN_D7 = 7;
  49.  
  50. /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
  51. const uint8_t keypad_Keypad3x4_C1_PIN_D8 = 8;
  52. const uint8_t keypad_Keypad3x4_C2_PIN_D9 = 9;
  53. const uint8_t keypad_Keypad3x4_C3_PIN_D10 = 10;
  54.  
  55. /***** DEFINITION OF KEYPAD VARIABLES *****/
  56. const uint8_t KEYPAD3X4_ROWS = 4; // four rows
  57. const uint8_t KEYPAD3X4_COLS = 3; // three columns
  58. char Keys_Keypad3x4[KEYPAD3X4_ROWS][KEYPAD3X4_COLS] = {
  59.     {'1','2','3'},
  60.     {'4','5','6'},
  61.     {'7','8','9'},
  62.     {'*','0','#'},
  63. };
  64.  
  65. // Create keypad object
  66. Keypad keypad = Keypad(makeKeymap(Keys_Keypad3x4),
  67.                        new byte[KEYPAD3X4_ROWS]{keypad_Keypad3x4_R1_PIN_D4, keypad_Keypad3x4_R2_PIN_D5, keypad_Keypad3x4_R3_PIN_D6, keypad_Keypad3x4_R4_PIN_D7},
  68.                        new byte[KEYPAD3X4_COLS]{keypad_Keypad3x4_C1_PIN_D8, keypad_Keypad3x4_C2_PIN_D9, keypad_Keypad3x4_C3_PIN_D10},
  69.                        KEYPAD3X4_ROWS, KEYPAD3X4_COLS);
  70.  
  71. // Create servo object
  72. Servo doorServo;
  73.  
  74. // WiFi credentials
  75. const char* ssid = "your_SSID";
  76. const char* password = "your_PASSWORD";
  77.  
  78. // Create web server object
  79. WebServer server(80);
  80.  
  81. // State variables
  82. bool doorLocked = true; // Initial state is locked
  83. const String correctPIN = "1234"; // Correct PIN code
  84.  
  85. void setup(void)
  86. {
  87.     // Initialize serial communication
  88.     Serial.begin(115200);
  89.  
  90.     // Set pin modes
  91.     pinMode(keypad_Keypad3x4_R1_PIN_D4, INPUT_PULLUP);
  92.     pinMode(keypad_Keypad3x4_R2_PIN_D5, INPUT_PULLUP);
  93.     pinMode(keypad_Keypad3x4_R3_PIN_D6, INPUT_PULLUP);
  94.     pinMode(keypad_Keypad3x4_R4_PIN_D7, INPUT_PULLUP);
  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.     // Attach servo to pin
  100.     doorServo.attach(11); // Attach servo to pin 11
  101.  
  102.     // Connect to WiFi
  103.     WiFi.begin(ssid, password);
  104.     while (WiFi.status() != WL_CONNECTED) {
  105.         delay(1000);
  106.         Serial.println("Connecting to WiFi...");
  107.     }
  108.     Serial.println("Connected to WiFi");
  109.  
  110.     // Define web server routes
  111.     server.on("/", handleRoot);
  112.     server.on("/unlock", handleUnlock);
  113.     server.on("/lock", handleLock);
  114.     server.begin();
  115. }
  116.  
  117. void loop(void)
  118. {
  119.     // Handle keypad input
  120.     char key = keypad.getKey();
  121.     if (key) {
  122.         Serial.println(key);
  123.         if (key == '#') { // If '#' is pressed, check the PIN
  124.             String enteredPIN = ""; // Store entered PIN
  125.             while (true) {
  126.                 key = keypad.getKey();
  127.                 if (key) {
  128.                     enteredPIN += key; // Append key to entered PIN
  129.                     Serial.println(enteredPIN);
  130.                     if (enteredPIN.length() >= 4) break; // Break if 4 digits are entered
  131.                 }
  132.             }
  133.             if (enteredPIN == correctPIN) {
  134.                 doorLocked = !doorLocked; // Toggle lock state
  135.                 if (doorLocked) {
  136.                     doorServo.write(0); // Lock the door
  137.                 } else {
  138.                     doorServo.write(90); // Unlock the door
  139.                 }
  140.             }
  141.         }
  142.     }
  143.  
  144.     // Handle web server requests
  145.     server.handleClient();
  146. }
  147.  
  148. void updateOutputs()
  149. {
  150.     // Update output pins based on raw data
  151.     // This function can be used to update any additional outputs if needed
  152. }
  153.  
  154. void handleRoot() {
  155.     // Serve the web page with the lock state
  156.     String message = "Door is currently " + String(doorLocked ? "Locked" : "Unlocked");
  157.     server.send(200, "text/html", message);
  158. }
  159.  
  160. void handleUnlock() {
  161.     // Unlock the door
  162.     doorLocked = false;
  163.     doorServo.write(90); // Move servo to unlock position
  164.     server.send(200, "text/html", "Door Unlocked");
  165. }
  166.  
  167. void handleLock() {
  168.     // Lock the door
  169.     doorLocked = true;
  170.     doorServo.write(0); // Move servo to lock position
  171.     server.send(200, "text/html", "Door Locked");
  172. }
  173.  
  174. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement