What is the error in this code? Thanks in advance.
The lcd must print "Dispense feeds" every 7:30 and 1:30.
void loop() {
DateTime now = RTC.now();
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0,0);
if (now.hour() == 7 && now.minute() == 30) || (now.hour() == 1 && now.minute() == 30)
{
lcd.print("Dispense Feeds"); }