An Introduction to Programming the Internet of Things (IoT) Specialization
Hackr.io - это сообщество, где можно найти и поделиться лучшими онлайн-курсами и учебными пособиями. Присоединяйтесь к ним, это займет всего 30 секунд.
I'm getting this problem with arduino switch please help!
I believe the arduino that I got from w11stop.com/arduino as i think it's SWITCH statement has some compile time problems.
If I try to declare a boolean variable in a CASE statement as illustrated in "case 2: in the snippet below, the compiler throws an error.
I add this to the other CASE statement problem I flagged earlier: ie. the compiler does not throw an error if you misspell "default" as "defalut.")
CODE
switch (var) {
case 1:
//do something when var equals 1
break;
case 2:
boolean X;
//do something when var equals 2
break;
default:
// if nothing else matches, do the default
// default is optional
break;
}
This appears to be a problem with the compiler, NOT my code, and it seems to happen only with nested SWITCH statements.
I'm getting this problem with arduino switch please help!
I believe the arduino that I got from w11stop.com/arduino as i think it's SWITCH statement has some compile time problems.
If I try to declare a boolean variable in a CASE statement as illustrated in "case 2: in the snippet below, the compiler throws an error.
I add this to the other CASE statement problem I flagged earlier: ie. the compiler does not throw an error if you misspell "default" as "defalut.")
CODE
switch (var) {
case 1:
//do something when var equals 1
break;
case 2:
boolean X;
//do something when var equals 2
break;
default:
// if nothing else matches, do the default
// default is optional
break;
}
This appears to be a problem with the compiler, NOT my code, and it seems to happen only with nested SWITCH statements.
Thank in advance for your prompt response.
Пожалуйста, расскажите нам, что не так с комментарием. Благодарю.