need "timeclock" code for an Arduino nano

Hi Guys,

I´m new at this forum and I don`t even know programming with Arduino:( but anyway, that´s why I´m here.
I´ve already a lot of experiences with Arduino boards especially using it for 3D Printers.

My "Project" explained:

The board I want to use is an arduino Nano.

I would like to connect 3 switches to the nano

and by switching the: 1.first switch, current should be there between Pin x and GND
2.second
3.third
after 1.15min for 2sec.
2.20min
3.30min

So actually, its would be like

If Switch 1 is switched, wait for 15 min enable Power(between Pin x and GND) for 2 sec
2 20
3 30

I would be very glad if anyone could write a code for me or send me one that is similar to this one.

Best regards(and sorry for my bad english)

Simon;)

Simon3d:
I would be very glad if anyone could write a code for me or send me one that is similar to this one.

Best option: Request a mod to move the thread to 'gigs and collaborations' - where you can solicit someone to do this, presumably with money changing hands.

Next: Make an attempt yourself, learn the IDE and some C++ and ask questions as you go along.

This forum is for people to learn. if you want someone to do the coding for you then i'm sure there are other places you can people for hire that will gladly write your code for a price.

What do you want to happen if a switch is switched a second time before the timer expires?

Is "Pin x" the same pin for all three switches?

I guess that the following could be very close to your hardware setup.
led3sw3.png
Figure-1:

Now, write codes within the following two functions of the IDE so that the LEDs behave as per your specifications when switches are activated.

void setup()
{
    Serial.begin(9600);                     //Serial Monitor is enabled
    PinMode(8, INPUT_PULLLUP);      //K1 will work as an input switch; active level is: LOW
    //---------------------------------
}

void loop()
{
    //---------------------------
}

led3sw3.png