timer issue

Hi there!

I see you have a line of code as shown below:

delay(28800000);

This will cause an 8 hour delay. So the motor will only move three degrees in the 24 period, and is reset when the timer calls the moveservo() function again.

Try setting this delay to 15ms by using the following line:

delay(15);

Good luck!