Helo i am realy new to Arduino, and i am trying to set a servo motor to move from 90º to 0º in 2.5 Sec. than 0º to 180 in 5 sec. and than from 180º to 90º, all of this in 10 sec. total and after i push a button.
But i want to use the milles().
can any one help me with the code?
Please read How to use the forum and edit your post accordingly. Especially the part about code tags and question formulation. Because What exactly is the problem?
The "Code: [Select]" feature allows someone to select the entire sketch so it can be easily copied and pasted into the IDE for testing.
If you have already posted without using code tags, open your message and select "modify" from the pull down menu labelled, "More", at the lower left corner of the message. Highlight your code by selecting it (it turns blue), and then click on the "</>" icon at the upper left hand corner. Click on the "Save" button. Code tags can also be inserted manually in the forum text using the code and /code metatags.
Unless the sketch is too large, it's better if you post your code, rather than attach it. When it's attached, we have to download it, create a folder then open your code in our IDE. And afterwards, the folder remains unless we navigate to the "Temp" folder and manually remove it. It's much easier to just view the code in your post.
Many questions can be answered by reading the documentation which is provided with the IDE, available under the help tab, or online here.
There are many other things that programmers do to make their code understandable. Please do them, as a courtesy to the members who volunteer their time to help you here. One is to provide the entire code, not just a snippet. Use a standard indentation to clearly show the code blocks. Never put more than one statement per line. Place any brackets by themselves on a separate line. Use blank lines sparingly, no more than one at a time. Before posting the code, use Ctrl-T in the IDE to reformat the code in a standard format, which makes it easier for us to read.
Have a look at the demo Several things at a time. It moves a servos slowly and you could adjust the timing to meet your needs. It also has a switch function.