I am very new to arduino and wanted to make a simple clock using RTC 3231 and 16x2 I2C LCD. Everything on my arduino was working perfect. I came to know that to use a RTC, you need a library named RTClib. I installed that library from the official library manager but when i typed in include <RTClib>
instead of becoming orange, it stayed black. I took that as a bug and tried to upload the code but it gave me an error:
`Arduino: 1.8.13 (Windows 10), Board: "Arduino Uno"
In file included from C:\Users\admin\Desktop\sketch_dec28c\sketch_dec28c\sketch_dec28c.ino:3:0:
C:\Users\admin\Documents\Arduino\libraries\RTClib-2.0.2\src/RTClib.h:25:10: fatal error: Adafruit_I2CDevice.h: No such file or directory
#include <Adafruit_I2CDevice.h>
^~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
exit status 1
Error compiling for board Arduino Uno.
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.`
This is my very first project, I decided to download another RTC lib version via Github but it gave me more errors now what should i do?