Skip to content

Commit

Permalink
Updated Arduino core to 1.8.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
CelliesProjects committed Jan 29, 2020
1 parent 1fd7b88 commit 74db9b3
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 11 additions & 1 deletion compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
12 changes: 11 additions & 1 deletion debug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion flash.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 74db9b3

Please sign in to comment.