This line
EEPROM.get(1, eeprom_daily);
sets the variable eeprom_daily to the value saved at EEPROM address 1.
If you want to know what the value of eeprom_daily is you need to ouput that to the Serial Monitor:
Serial.println(eeprom_daily);
This line
EEPROM.get(1, eeprom_daily);
sets the variable eeprom_daily to the value saved at EEPROM address 1.
If you want to know what the value of eeprom_daily is you need to ouput that to the Serial Monitor:
Serial.println(eeprom_daily);