I am tired of seeing Serial.begin(9600); where 9600 is not going to be used at all. Can Serial.begin(Serial.baud()); be acceptable?dds
| @@ -22,7 +22,7 @@ AudioConnection c2(audioInput,audioOutput); | |||
| void setup() { | |||
| AudioMemory(4); | |||
| Serial.begin(1); | |||
| Serial.begin(Serial.baud()); | |||
| } | |||
| elapsedMillis fps; | |||
| @@ -29,7 +29,7 @@ void setup() { | |||
| audioShield.inputSelect(myInput); | |||
| audioShield.volume(75); | |||
| audioShield.unmuteLineout(); | |||
| Serial.begin(1); | |||
| Serial.begin(Serial.baud()); | |||
| } | |||
| elapsedMillis fps; | |||