void TestPrintln(){
Serial.println("Test from subroutine success.");
}
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Boot started.");
Serial.println("----------------");
}
void loop() {
//Check commands over serial
if (Serial.available())
{
String command = Serial.readStringUntil(10);
if (command == "reboot"){ESP.restart();}
else if (command == "testl") {Serial.println("Test from loop success.");}
else if (command == "tests") {TestPrintln;}
}
}
esp:VIN
esp:GND.2
esp:D13
esp:D12
esp:D14
esp:D27
esp:D26
esp:D25
esp:D33
esp:D32
esp:D35
esp:D34
esp:VN
esp:VP
esp:EN
esp:3V3
esp:GND.1
esp:D15
esp:D2
esp:D4
esp:RX2
esp:TX2
esp:D5
esp:D18
esp:D19
esp:D21
esp:RX0
esp:TX0
esp:D22
esp:D23