Added support for receiving data

This commit is contained in:
Julian Metzler 2018-02-12 23:46:27 +01:00
parent 642100181d
commit 94c553f824
3 changed files with 5 additions and 2 deletions

View File

@ -61,7 +61,7 @@ enum UpdateStatus {
*/
unsigned long HW_GROUP = 1; // Changes with hardware changes that require software changes
unsigned long FW_VERSION = 1802080001; // Changes with each release; must always increase
unsigned long FW_VERSION = 1802120001; // Changes with each release; must always increase
unsigned long SP_VERSION = 0; // Loaded from SPIFFS; changed with each SPIFFS build; must always increase (uses timestamp as version)
// HTTPS update settings
@ -536,6 +536,9 @@ void loop() {
Serial.write(client.read());
setLED(0);
}
while (Serial.available()) {
client.write(Serial.read());
}
}
// Handle LED blinking while button is being pressed (visual timing help)

Binary file not shown.

View File

@ -1 +1 @@
1802080001
1802120001