bool debug = true;
void setup() {
// put your setup code here, to run once:
if(debug){
Serial.begin(115200);
Serial.println("Debug mode is on");
}
}
void loop() {
// put your main code here, to run repeatedly:
}
bool debug = true;
void setup() {
// put your setup code here, to run once:
if(debug){
Serial.begin(115200);
Serial.println("Debug mode is on");
}
}
void loop() {
// put your main code here, to run repeatedly:
}