#include < Wire.h > //include the Wire library for I2C communication
#include < LiquidCrystal_I2C.h > //include the LiquidCrystal_I2C library for controlling the LCD screen
#include < DS3231.h > //include the DS3231 library for controlling the RTC module
#include < Servo.h > //include the Servo library for controlling the SG90 micro servos
//define the pins for the joystick module
#define JOYSTICK_X A0
#define JOYSTICK_Y A1
#define JOYSTICK_BUTTON 2
//define the pins for the buzzer and relay module
#define BUZZER 3
#define RELAY 4
//define the names for the micro servos
#define SERVO1 "paracetamol"
#define SERVO2 "ibuprofen"
#define SERVO3 "constipated"
#define SERVO4 "crazy diarrhea"