Serial.begin(9600); // set the data rate for the hardware serial port
mySerial.begin(9600); // set the data rate for the software serail port
putstring_nl(“”); // begin printing to debug output
putstring(“Botanicalls v”);
putstring_nl(VERSION);
if(digitalRead(SWITCH)==LOW) { // show the username and password if the test switch is held on startup
putstring(“ID: “);
putstring_nl(USERNAMEPASS);
}