Back to Arduino Step By Step Course

Lesson 60: "while" and "do while" loops | Arduino Step By Step Course

If you don't like to see ads while video is being played you can purchase this course for $200 from Udemy or purchase YouTube premium Here

Please select other codes for this lecture from the links below.

Part 6: Arduino Practial Programming

In this lesson we learn how to execute conditions with "while" and "do while" loops. this is exampel 1. Please watch the video for full details.


 
/*
 * Lesson 60-1: While and do while loop | Arduino Step by Step course by robojax
 This code is "while" loop example 
 watch full details: https://youtu.be/rbUiiJ1aSFg
 * 
 * written by Ahmad Shamshiri on Dec 28, 2021 at 06:46 in Ajax, Ontario, Canada
 * this code can be obtained from Robojax.com

This code is available at http://robojax.com/course1/?vid=lecture67
 
with over 100 lectures Free On  YouTube Watch it here http://robojax.com/L/?id=338
Get the code for the course: http://robojax.com/L/?id=339  


or make donation using PayPal http://robojax.com/L/?id=64
 
 * This code is "AS IS" without warranty or liability. Free to be used as long as you keep this note intact.* 
 * This code has been download from Robojax.com
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
int b = 4;//


//the code inside setup() runs once.

void setup() {
   Serial.begin(9600);
   Serial.println("Lesson: 60-1: While and Do while");
  while(b >0)
  {
   b--;
   Serial.println(b);
  }
}//setup end

void loop() {
  //robojax.com code. nothing inside loop here
}


   

The least I expect from you is to thumb up the video and subscribe to my channel. I appriciate that. .I have spent months making these lectures and writing code. You don't lose anything by subscribging to my channel. Your subscription is stamp of approval to my videos and more people can find them and in it turn it helps me. Thank you

If you found this tutorial helpful, please support me so I can continue creating content like this. support me via PayPal

**** AFFILIATE PROGRAM **** We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.