User:Claxhanson/proto: Difference between revisions
Claxhanson (talk | contribs) |
Claxhanson (talk | contribs) |
||
Line 7: | Line 7: | ||
<div style="color:#77e600;font-size:40"> | <div style="color:#77e600;font-size:40"> | ||
(Repeat for each KNOB) | (Repeat for each KNOB) | ||
<div | </div> | ||
if (KNOB < 31) { | if (KNOB < 31) { | ||
Serial.print (" "); | Serial.print (" "); | ||
} | } | ||
else if (KNOB > 31 && KNOB < 62) { | else if (KNOB > 31 && KNOB < 62) { [[File:Ifknob.jpg|900px|frameless|right]] | ||
Serial.print (" "); | Serial.print (" "); | ||
} | } | ||
... | |||
} | } | ||
else if (KNOB > 217 && KNOB < 248) { | else if (KNOB > 217 && KNOB < 248) { | ||
Line 36: | Line 22: | ||
Serial.print (" "); | Serial.print (" "); | ||
} | } | ||
... | |||
else if (KNOB > 899 && KNOB < 992) { | else if (KNOB > 899 && KNOB < 992) { | ||
Serial.print (" "); | Serial.print ("The Amazon forest is burning""); | ||
} | } | ||
else if (KNOB > 992 && KNOB < 1023) { | else if (KNOB > 992 && KNOB < 1023) { | ||
Serial.print (" "); | Serial.print (" "); | ||
} | } | ||
==Knob, Slider, Switch== | ==Knob, Slider, Switch== |
Revision as of 14:49, 19 April 2020
🩲
If, else if, and the knob
(Repeat for each KNOB)
if (KNOB < 31) {
Serial.print (" "); }
else if (KNOB > 31 && KNOB < 62) {
Serial.print (" "); }
...
}
else if (KNOB > 217 && KNOB < 248) {
Serial.print (""); }
else if (KNOB > 248 && KNOB < 279) {
Serial.print (" "); }
... else if (KNOB > 899 && KNOB < 992) {
Serial.print ("The Amazon forest is burning""); }
else if (KNOB > 992 && KNOB < 1023) {
Serial.print (" "); }