Advertisement
pleasedontcode

**Servo Control** rev_120

Oct 7th, 2024
85
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: **Servo Control**
  13.     - Source Code NOT compiled for: Arduino Nano ESP32
  14.     - Source Code created on: 2024-10-07 22:36:01
  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. /* START CODE */
  31.  
  32. /****** DEFINITION OF LIBRARIES *****/
  33. #include <Deneyap_Servo.h>  //https://github.com/deneyapkart/deneyap-servo-arduino-library
  34. #include <Keypad.h>         //https://github.com/Chris--A/Keypad
  35.  
  36. /****** FUNCTION PROTOTYPES *****/
  37. void setup(void);
  38. void loop(void);
  39. void updateOutputs(void);
  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. const uint8_t pinButton_PushButton_PIN_D2 = 2;
  47.  
  48. /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
  49. const uint8_t keypad_Keypad3x4_C1_PIN_D8 = 8;
  50. const uint8_t keypad_Keypad3x4_C2_PIN_D9 = 9;
  51. const uint8_t keypad_Keypad3x4_C3_PIN_D10 = 10;
  52.  
  53. /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
  54. bool keypad_Keypad3x4_C1_PIN_D8_rawData = 0;
  55. bool keypad_Keypad3x4_C2_PIN_D9_rawData = 0;
  56. bool keypad_Keypad3x4_C3_PIN_D10_rawData = 0;
  57.  
  58. /***** DEFINITION OF OUTPUT PHYSICAL VARIABLES *****/
  59. float keypad_Keypad3x4_C1_PIN_D8_phyData = 0.0;
  60. float keypad_Keypad3x4_C2_PIN_D9_phyData = 0.0;
  61. float keypad_Keypad3x4_C3_PIN_D10_phyData = 0.0;
  62.  
  63. const uint8_t KEYPAD3X4_ROWS = 4; // four rows
  64. const uint8_t KEYPAD3X4_COLS = 3; // three columns
  65. char Keys_Keypad3x4[KEYPAD3X4_ROWS][KEYPAD3X4_COLS] = {
  66.     {'1', '2', '3'},
  67.     {'4', '5', '6'},
  68.     {'7', '8', '9'},
  69.     {'*', '0', '#'},
  70. };
  71.  
  72. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  73. // Create instances for servo control and keypad handler
  74. ServoControl doorServo(9); // Attach the servo to pin 9
  75. KeypadHandler keypad(Keys_Keypad3x4, (byte[]){keypad_Keypad3x4_R1_PIN_D4, keypad_Keypad3x4_R2_PIN_D5, keypad_Keypad3x4_R3_PIN_D6, keypad_Keypad3x4_R4_PIN_D7}, (byte[]){keypad_Keypad3x4_C1_PIN_D8, keypad_Keypad3x4_C2_PIN_D9, keypad_Keypad3x4_C3_PIN_D10});
  76.  
  77. void setup(void)
  78. {
  79.     // put your setup code here, to run once:
  80.     pinMode(keypad_Keypad3x4_R1_PIN_D4, INPUT_PULLUP);
  81.     pinMode(keypad_Keypad3x4_R2_PIN_D5, INPUT_PULLUP);
  82.     pinMode(keypad_Keypad3x4_R3_PIN_D6, INPUT_PULLUP);
  83.     pinMode(keypad_Keypad3x4_R4_PIN_D7, INPUT_PULLUP);
  84.     pinMode(pinButton_PushButton_PIN_D2, INPUT_PULLUP);
  85.  
  86.     pinMode(keypad_Keypad3x4_C1_PIN_D8, OUTPUT);
  87.     pinMode(keypad_Keypad3x4_C2_PIN_D9, OUTPUT);
  88.     pinMode(keypad_Keypad3x4_C3_PIN_D10, OUTPUT);
  89. }
  90.  
  91. void loop(void)
  92. {
  93.     // put your main code here, to run repeatedly:
  94.     updateOutputs(); // Refresh output data
  95.     checkKeypad();   // Check for keypad input
  96. }
  97.  
  98. void updateOutputs()
  99. {
  100.     digitalWrite(keypad_Keypad3x4_C1_PIN_D8, keypad_Keypad3x4_C1_PIN_D8_rawData);
  101.     digitalWrite(keypad_Keypad3x4_C2_PIN_D9, keypad_Keypad3x4_C2_PIN_D9_rawData);
  102.     digitalWrite(keypad_Keypad3x4_C3_PIN_D10, keypad_Keypad3x4_C3_PIN_D10_rawData);
  103. }
  104.  
  105. void checkKeypad() {
  106.     char key = keypad.getKey();
  107.     if (key) {
  108.         // Check if the input PIN is correct
  109.         if (key == '1') {
  110.             if (doorServo.isLocked()) {
  111.                 doorServo.unlock(); // Unlock the door
  112.             } else {
  113.                 doorServo.lock(); // Lock the door
  114.             }
  115.         }
  116.     }
  117. }
  118.  
  119. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement