diff --git a/README.md b/README.md index 6105558..0c86d45 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Another cool feature is support for 3 Dallas DS18B20 temperature sensors, with t #### Requirements - The latest [aquacontrol32 release](https://github.com/CelliesProjects/aquacontrol32/releases/latest). - - The [Arduino IDE](https://arduino.cc/) 1.8.10. + - The [Arduino IDE](https://arduino.cc/) 1.8.11. - The [ESP32 Arduino Core 1.0.4](https://github.com/espressif/arduino-esp32/releases/tag/1.0.4). #### Libraries diff --git a/compile.sh b/compile.sh index efb1696..b13d447 100755 --- a/compile.sh +++ b/compile.sh @@ -13,5 +13,15 @@ else fi echo "const char * sketchVersion = \"$currentVersion\";" > gitTagVersion.h echo -e "Compiling aquacontrol32 version: \e[36m$currentVersion\e[0m" -~/arduino-1.8.10/arduino --board espressif:esp32:mhetesp32minikit --pref custom_DebugLevel=esp32_none --port /dev/ttyUSB0 --pref upload.speed=921600 --preserve-temp-files --pref build.path=temp --pref build.partitions=default_ffat --pref build.flash_freq=80m -v --verify aquacontrol32.ino | grep -e 'Using core' -e 'Using board' -e ' uses ' -e 'Using library' -e 'Compiling' -e 'Global' +~/arduino-1.8.11/arduino \ + --board espressif:esp32:mhetesp32minikit \ + --pref custom_DebugLevel=esp32_none \ + --port /dev/ttyUSB0 \ + --pref upload.speed=921600 \ + --preserve-temp-files \ + --pref build.path=temp \ + --pref build.partitions=default_ffat \ + --pref build.flash_freq=80m -v \ + --verify aquacontrol32.ino \ + | grep -e 'Using core' -e 'Using board' -e ' uses ' -e 'Using library' -e 'Compiling' -e 'Global' rm gitTagVersion.h diff --git a/debug.sh b/debug.sh index c3b844d..566d307 100755 --- a/debug.sh +++ b/debug.sh @@ -14,5 +14,15 @@ fi currentVersion+="!debug" echo "const char * sketchVersion = \"$currentVersion\";" > gitTagVersion.h echo -e "Compiling and flashing aquacontrol32 version: \e[36m$currentVersion\e[0m" -~/arduino-1.8.10/arduino --board espressif:esp32:esp32 --pref custom_DebugLevel=esp32_info --port /dev/ttyUSB0 --pref upload.speed=921600 --preserve-temp-files --pref build.path=temp --pref build.partitions=default_ffat --pref build.flash_freq=80m -v --upload aquacontrol32.ino | grep -e 'Using core' -e 'Using board' -e ' uses ' -e 'Using library' -e 'Compiling' -e 'Global' +~/arduino-1.8.11/arduino \ + --board espressif:esp32:esp32 \ + --pref custom_DebugLevel=esp32_info \ + --port /dev/ttyUSB0 \ + --pref upload.speed=921600 \ + --preserve-temp-files \ + --pref build.path=temp \ + --pref build.partitions=default_ffat \ + --pref build.flash_freq=80m -v \ + --upload aquacontrol32.ino \ + | grep -e 'Using core' -e 'Using board' -e ' uses ' -e 'Using library' -e 'Compiling' -e 'Global' rm gitTagVersion.h diff --git a/flash.sh b/flash.sh index e942940..2a378b0 100755 --- a/flash.sh +++ b/flash.sh @@ -13,7 +13,7 @@ else fi echo "const char * sketchVersion = \"$currentVersion\";" > gitTagVersion.h echo -e "Compiling and flashing aquacontrol32 version: \e[36m$currentVersion\e[0m" -~/arduino-1.8.10/arduino \ +~/arduino-1.8.11/arduino \ --board espressif:esp32:mhetesp32minikit \ --port /dev/ttyUSB0 \ --preserve-temp-files \