Lesson 8-2: Reading User Input, Printing Received Data from the Serial Monitor
In this lecture, we learn about conditional statements such as if, else if, and else with multiple examples.
540-Lesson 8: Arduino Conditional Statements
Язык: C++
/*
* S01-08-2
* Conditional Statement 2
Please watch video instruction here https://youtu.be/Mky-04NH_CQ
This code is available at http://robojax.com/course1/?vid=lecture08
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
* Written by Ahmad Shamshiri for Robojax, robojax.com http://youtube.com/robojaxTV
* at 22:27 on Feb 07, 2019 in Ajax, Ontario, Canada
*/
int k =12;
int x = 10;
void setup() {
Serial.begin(9600);//initialize the serial monitor
if ( x > k ){
Serial.println("x > k");
}else{
Serial.println("x < k");
}
}
void loop() {
//Robojax Step-by-Step Arduino Course http://robojax.com/L/?id=338
}
Ресурсы и ссылки
Ресурсов пока нет.
Файлы📁
Нет доступных файлов.