• ClipSaver
ClipSaver
Русские видео
  • Смешные видео
  • Приколы
  • Обзоры
  • Новости
  • Тесты
  • Спорт
  • Любовь
  • Музыка
  • Разное
Сейчас в тренде
  • Фейгин лайф
  • Три кота
  • Самвел адамян
  • А4 ютуб
  • скачать бит
  • гитара с нуля
Иностранные видео
  • Funny Babies
  • Funny Sports
  • Funny Animals
  • Funny Pranks
  • Funny Magic
  • Funny Vines
  • Funny Virals
  • Funny K-Pop

Using Arrays with For Loops скачать в хорошем качестве

Using Arrays with For Loops 3 years ago

Arduino

Arduino(Brand)

Arduino Tutorial

Arduino Lesson

Open Source Hardware Group

Learning Arduino

Microcontrollers

Electronics

Arduino IDE

Arduino Sketch

Computer programming

C++

Programming Electronics Academy

Не удается загрузить Youtube-плеер. Проверьте блокировку Youtube в вашей сети.
Повторяем попытку...
Using Arrays with For Loops
  • Поделиться ВК
  • Поделиться в ОК
  •  
  •  


Скачать видео с ютуб по ссылке или смотреть без блокировок на сайте: Using Arrays with For Loops в качестве 4k

У нас вы можете посмотреть бесплатно Using Arrays with For Loops или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:

  • Информация по загрузке:

Скачать mp3 с ютуба отдельным файлом. Бесплатный рингтон Using Arrays with For Loops в формате MP3:


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса ClipSaver.ru



Using Arrays with For Loops

🤩 FREE Arduino Crash Course 👇👇 https://bit.ly/get_Arduino_skills **Want to learn more? Check out our courses!** https://bit.ly/3EMCjCy **Get your Free Trial of Altium PCB design Software** https://www.altium.com/yt/programming... **Get the code, transcript, challenges, etc for this lesson on our website** https://bit.ly/3ref0Nv **We designed this circuit board for beginners!** Kit-On-A-Shield: https://amzn.to/3lfWClU FOLLOW US ELSEWHERE --------------------------------------------------- Facebook:   / programmingelectronicsacademy   Twitter:   / progelecacademy   Website: https://www.programmingelectronics.com/ ________________________________ I would say that arrays are one of the most useful programming tools available. Every programming language that I'm familiar with, at least, has some form of an array. If you're trying to learn a new programming language, one of the things I would recommend is to get familiar with how to write and manipulate data in arrays. Like, if I was gonna learn a spoken language, like Russian, I'd want to prioritize learning the most common words and phrases first. Well, if I am learning a new programming language, I am gonna spend a ton of time learning how to use arrays in that language because they're just so fundamental. In this video, you're gonna learn how to go through, that is how to iterate through, an array in the Arduino programming language. If you can do it in the Arduino language, then you can also do it in the C and the C++ language. Knowing how to do this opens up a ton of useful possibilities for you as a programmer, and I'd argue, it's really an essential thing to learn about any programming language that you're interested in using. Stay tuned. Subscribe to our YouTube channel to get more videos like this. All right, before I jump in, I just wanna say a huge shout out to Altium for sponsoring this video. If you check out the description, you can get our link to a free trial of their software. All right, so here we are in the Arduino IDE, and I'm gonna write a little bit of code, and then we're gonna talk about it. Basically, this is what I'm gonna do. I am gonna make an array and I'm gonna say, like, "you know what? This array is gonna be filled with sensor readings from some sensor," like maybe, maybe my device is getting a packet of information from some other device, right? And I have no control over that other device. I'm just getting a series of inputs from some other device, and so I'm gonna make an array that kind of, like, mocks out that input, and then what I'm gonna do is I'm gonna iterate through each one of those inputs, and then we'll print it out to the serial monitor. So let's do that. All right, so what have I got here? Well, the first thing I did is I created an array, and this is just like a mock-up array. It could be whatever, but this is an array that holds floating point values. The name is called sensorReadings and the size is four. That means it can hold a total of four values. It can never hold more than four. Like, the limit, the size, of this array is established when you first create it. So the size is four, and then I initialize it with four separate values. Now, you don't have to put in the values when you initialize it but in this case, I have. So I've got four floating point numbers that I initialized it with. Now, for this discussion, what's important for us is we understand, like, what the index of these numbers are. So let me just write that out above this, so we can get clearer. So the index value refers to the position of the element in the array. Now, if you're wondering like, "hey, what is this index thing? CONTINUED... https://bit.ly/3ref0Nv **About Us:** This Arduino lesson was created by Programming Electronics Academy. We are an online education company who seeks to help people learn about electronics and programming through the ubiquitous Arduino development board. **We have no affiliation whatsoever with Arduino LLC, other than we think they are cool.**

Comments
  • What is the ? code!?  Learn about the ternary operator! 3 years ago
    What is the ? code!? Learn about the ternary operator!
    Опубликовано: 3 years ago
    12690
  • Using Arrays with Arduino 3 years ago
    Using Arrays with Arduino
    Опубликовано: 3 years ago
    33695
  • Arduino MASTERCLASS | How to Use Arduino Libraries PART 7 2 years ago
    Arduino MASTERCLASS | How to Use Arduino Libraries PART 7
    Опубликовано: 2 years ago
    51259
  • What is a semaphore? How do they work? (Example in C) 4 years ago
    What is a semaphore? How do they work? (Example in C)
    Опубликовано: 4 years ago
    339331
  • Arduino MASTERCLASS | How to Use Variables PART 5 2 years ago
    Arduino MASTERCLASS | How to Use Variables PART 5
    Опубликовано: 2 years ago
    30823
  • EasyEDA Full TUTORIAL + Create Component + TIPS 5 years ago
    EasyEDA Full TUTORIAL + Create Component + TIPS
    Опубликовано: 5 years ago
    458109
  • Serial Communication with Arduino - The details! 3 years ago
    Serial Communication with Arduino - The details!
    Опубликовано: 3 years ago
    73181
  • Arduino Sketch with millis() instead of delay() 6 years ago
    Arduino Sketch with millis() instead of delay()
    Опубликовано: 6 years ago
    241546
  • HOW TRANSISTORS RUN CODE? 1 year ago
    HOW TRANSISTORS RUN CODE?
    Опубликовано: 1 year ago
    849124
  • Arduino millis() function: 5+ things to consider 6 years ago
    Arduino millis() function: 5+ things to consider
    Опубликовано: 6 years ago
    150018

Контактный email для правообладателей: [email protected] © 2017 - 2025

Отказ от ответственности - Disclaimer Правообладателям - DMCA Условия использования сайта - TOS