Looping for a set amount of times.

Hi all, this is a basic programming question.

I have a set up where a button changes a button state. (ranging from 0-5)

What i want to do is:

Make some leds flash a few times when a button state is reached.

Then Stop these flashing leds and continue with the rest of the program.

I am looking at 'for' statements.

for example:

if (buttonMode == 3) {
  
  for(int i = 0; i<5; i++){
    
  Serial.println(i);
    
  digitalWrite(7, LOW);
  digitalWrite(8, LOW);
  digitalWrite(9, LOW);
  delay(400);

  digitalWrite(7, HIGH);
  digitalWrite(8, HIGH);
  digitalWrite(9, HIGH);
  delay(400);
  
  }}}}

I am having trouble stopping the code listed above, and I require to play another bit of code after it have been repeated a few times.

I have tried inserting [if button state > 3, 'break:'] etc.

Basically I am missing some fundamental programming knowledge!

Many thanks,

Wi11turner:
Basically I am missing some fundamental programming knowledge!

Actually, you are missing the rest of your code.

From what it looks like, you have attempted to implement a state machine, but without seeing all of the code, I can't tell how.

One way of doing what you want is a state machine

Imagine your states are:
Idle
Any_button_seen
Button1_flashing
Button_2_flashing

What would make the transition idle->Any_button_seen? How would you decide to go to the state Button1_flashing?
If you were in the state Button1_flashing, what should the Arduino do? How would it decide to finish flashing (hint: look at blinkwithoutdelay example)
When finished flashing, what state do you think it should go back to?

Look up state machine.
Try drawing out the state machine on a sheet of paper. What might make it move from one state to another?

You will need a variable representing a state, and a switch statement.

I'd say you were close:

while (buttonMode == 3) {
  int i = 0;
  while( i<5){
    
  Serial.println(i);
    
  digitalWrite(7, LOW);
  digitalWrite(8, LOW);
  digitalWrite(9, LOW);
  delay(400);

  digitalWrite(7, HIGH);
  digitalWrite(8, HIGH);
  digitalWrite(9, HIGH);
  delay(400);
  i=i+1;
  }
button = 4;
}

stay in the inner loop, when done change the outer loop condition so it jumps out

Any reason not to use a for loop there?

I wasn't sure about where to change button to 4 with a for:next, this way seemed clearer to me.

No, the "while" loop is a classic "for"

Ok, the long hand way of writing it out still works tho, yes?
4:15 on a Friday, feeling a little frazzled ...

while (buttonMode == 3) {
// Do some stuff
button = 4;
}

How are you intending to exit this loop? Changing the value of button has no effect on buttonMode.

I am guessing you are learning and just building your own sketches to verify you understand (basically, that is where I am).

the for loop works if you set it up as a function instead of inside the void loop.

so for example
void loop ()
{check for a button press,
if received
check the state
kick out to the function that handles that
}

function state1
{do stuff}

function state2
{do different stuff}

Your for loop would be setup in the function state1 or 2.
When the if loop is done, it would automatically return to void loop and look for another button press.

you might also want to look at debounce (search debounce arduino)
I had the issue of my button press being seen more than once changing my state rapidly. Originally I used a delay, but that basically just paused the program instead of keeping multiple button presses from occurring.

Giland:
the for loop works if you set it up as a function instead of inside the void loop.

When the if loop is done, it would automatically return to void loop and look for another button press.

I can't interpret either of those sentences in any way that makes sense.

while (buttonMode == 3) {
// Do some stuff
buttonMode = 4;  <<< yeah, little typo there.
}

PeterH:

Giland:
the for loop works if you set it up as a function instead of inside the void loop.

When the if loop is done, it would automatically return to void loop and look for another button press.

I can't interpret either of those sentences in any way that makes sense.

how about

the for command works if used in a separate function instead of being inside the void loop().
when the if loop has i in the function reach 5 (no longer less than 5), it will return back to the void loop() and wait for another button press.

for example

void loop ()
{// general code to look for button press, current state, etc etc

if (button == 3) buttonstate3;
}

int butttonstate3()
{
 {for(int i = 0; i < 5; i++)        
 {
  Serial.println(i);  
  digitalWrite(7, LOW);
  digitalWrite(8, LOW);
  digitalWrite(9, LOW);
  delay(400);

  digitalWrite(7, HIGH);
  digitalWrite(8, HIGH);
  digitalWrite(9, HIGH);
  delay(400);
  }
button = 4;
}}

the for command works if used in a separate function instead of being inside the void loop().

No. Don't just make stuff up.

if (button == 3) buttonstate3;

That does not call the function buttonstate3. This does:

if (button == 3) 
  buttonstate3 ();

You would have got better answers if you posted all your code in the first place. Don't just excerpt it.

Giland:
how about

the for command works if used in a separate function instead of being inside the void loop().
when the if loop has i in the function reach 5 (no longer less than 5), it will return back to the void loop() and wait for another button press.

No, that is gibberish too. Are you deliberately trying to confuse people?