Advertisement
pleasedontcode

**Keypad Control** rev_74

Oct 5th, 2024
103
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 22:51:17
  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>  //https://github.com/deneyapkart/deneyap-servo-arduino-library
  32. #include <Keypad.h> //https://github.com/Chris--A/Keypad
  33. #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
  34. #include <LcdKeypad.h>  //https://github.com/dniklaus/arduino-display-lcdkeypad
  35. #include "LcdKeypadAdapter.h"
  36. #include "ServoControl.h"
  37. #include "KeypadHandler.h"
  38. #include "WebServer.h"
  39. #include "MainControl.h"
  40.  
  41. /****** FUNCTION PROTOTYPES *****/
  42. void setup(void);
  43. void loop(void);
  44.  
  45. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  46. const uint8_t keypad_Keypad3x4_R1_PIN_D4 = 4;
  47. const uint8_t keypad_Keypad3x4_R2_PIN_D5 = 5;
  48. const uint8_t keypad_Keypad3x4_R3_PIN_D6 = 6;
  49. const uint8_t keypad_Keypad3x4_R4_PIN_D7 = 7;
  50. const uint8_t pinButton_PushButton_PIN_D2 = 2;
  51.  
  52. /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
  53. const uint8_t keypad_Keypad3x4_C1_PIN_D8 = 8;
  54. const uint8_t keypad_Keypad3x4_C2_PIN_D9 = 9;
  55. const uint8_t keypad_Keypad3x4_C3_PIN_D10;
  56.  
  57. const uint8_t KEYPAD3X4_ROWS = 4; //four rows
  58. const uint8_t KEYPAD3X4_COLS = 3; //three columns
  59. char Keys_Keypad3x4[KEYPAD3X4_ROWS][KEYPAD3X4_COLS] = {
  60.     {'1','2','3'},
  61.     {'4','5','6'},
  62.     {'7','8','9'},
  63.     {'*','0','#'},
  64. };
  65.  
  66. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  67. MainControl mainControl; // Instance of MainControl class
  68.  
  69. void setup(void)
  70. {
  71.     // Initialize the main control setup
  72.     mainControl.setup();
  73. }
  74.  
  75. void loop(void)
  76. {
  77.     // Main control loop
  78.     mainControl.loop();
  79. }
  80.  
  81. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement