#tools.esptool.upload.pattern="{path}/{cmd}" {upload.verbose} -cd {upload.resetmethod} -cb {upload.speed} -cp "{serial.port}" -ca 0x00000 -cf "{build.path}/{build.project_name}.bin"
tools.esptool.upload.pattern="/usr/local/bin/esptool.py" --port "{serial.port}" --baud {upload.speed} write_flash 0x00000 "{build.path}/{build.project_name}.bin"
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Test your ESP8266");
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Tick");
delay(500);
Serial.println("Tack");
delay(500);
}