Advertisement
pleasedontcode

**Title:** Lock System rev_64

Oct 5th, 2024
90
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: **Title:** Lock System
  13.     - Source Code NOT compiled for: Arduino Nano ESP32
  14.     - Source Code created on: 2024-10-05 14:39:18
  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. - code too long. split in on addition files.
  34. ********* User code review feedback **********/
  35.  
  36. /****** DEFINITION OF LIBRARIES *****/
  37. #include "DoorLock.h"
  38. #include "KeypadConfig.h"
  39.  
  40. /***** DEFINITION OF PINS AND VARIABLES *****/
  41. const uint8_t BUTTON_PIN = 2;
  42. DoorLock doorLock(9, BUTTON_PIN); // Create a DoorLock object with the servo attached to pin 9
  43.  
  44. void setup(void) {
  45.     doorLock.setup(); // Call the setup method of DoorLock
  46. }
  47.  
  48. void loop(void) {
  49.     doorLock.loop(); // Call the loop method of DoorLock
  50. }
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement