I am new in coding and electronics, so I have a question.
Can I use underscores " _ " in the Arduino code?
Because I am planning to use 6 inputs and 12 outputs, it is a bit easier to keep the overview in the names...
Is this example possible:
// INPUTS
int switch01_Pin = 14;
int switch02_Pin = 15;
// OUTPUTS
int wire01_Pin = 0;
int wire02_Pin = 1;
// VARIABLES
boolean lastButton = LOW;
boolean currentButton = LOW;
boolean wire01_On = false;
boolean wire02_On = false;