Lesson 61-2: Using Switch and Case: Arduino Programming Example 2
468-Lesson 61: Using switch and case: Arduino programming | Arduino Step-by-Step Course
语言: C++
/*
* Lesson 61-1: While and do while loop | Arduino Step by Step course by robojax
This code is a "while" loop example
watch full details: https://youtu.be/tZ9IjPbuHSY
*
* written by Ahmad Shamshiri on Dec 28, 2021 at 07:56 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 a 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 downloaded 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 code = 241;//
//The code inside setup() runs once.
void sendWarning()
{
Serial.println("Code 710 Warning!");
}
void openMainDoor()
{
Serial.println("Code 241 Door opened");
}
void wrongCode()
{
Serial.println("Wrong code! Busted.");
}
void setup() {
Serial.begin(9600);
Serial.println("Lesson: 61-1: switch and case");
switch(code)
{
case 710:
sendWarning();
break;
case 241:
openMainDoor();
break;
default:
wrongCode();
}
}//setup end
void loop() {
//robojax.com code. Nothing inside loop here
}
资源与参考
尚无可用资源。
文件📁
没有可用的文件。