Robojax

Lesson 57: Using Array and Loop with Arduino

Lesson 57: Using Array and Loop with Arduino

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

Part 6: Arduino Practial Programming

In this lesson we learn how what an array is and how to define it. Please watch full details video. list of tipcs listed below.


  /*
 * Lesson 57: What is Array and "for" loop? | Arduino Step By Step Course
 * this code: reading values of array
 
 * Written by Ahmad Shamshiri for Robojax (Robojax.com)
 * on Dec 30, 2018 at 11:08 in Ajax, Ontario, Canada
 * watch full explanation: https://youtu.be/OgDZIP3VBK8
 
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/>.
 */


void setup() {
  Serial.begin(9600);// initialize serial monitor
  
   int price[]={3, 4, 5, 6, 7, 8, 9, 10, 11, 12};

  for (int i=0; i<10; i++)
  {
    Serial.println(price[i]);// prints values from pricea rray
  }
   
}

void loop() {
    

}