2019-08-20 14:32:47 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
pip install pyserial
|
|
|
|
wget -O arduino.tar.xz https://www.arduino.cc/download.php?f=/arduino-nightly-linux64.tar.xz
|
|
|
|
tar xf arduino.tar.xz
|
|
|
|
mv arduino-nightly $HOME/arduino_ide
|
|
|
|
mkdir -p $HOME/Arduino/libraries
|
2019-08-28 00:28:11 +02:00
|
|
|
mkdir -p $HOME/Arduino/hardware/espressif
|
|
|
|
cd $HOME/Arduino/hardware/espressif
|
2019-08-20 14:32:47 +02:00
|
|
|
|
|
|
|
ln -s $TRAVIS_BUILD_DIR esp32
|
|
|
|
cd esp32/tools
|
|
|
|
python get.py
|