Select Git revision
gen_data.py
setup-build-env.sh 580 B
#!/bin/bash
apt-get update
cd ~
# Install dependencies for EpoxyDuino
apt-get install make -y
apt-get install git -y
apt-get install g++ -y
# Create Arduino and Arduino Library Folder
mkdir /root/Arduino
mkdir /root/Arduino/libraries
cd -
# Install Libraries
cd /root/Arduino/libraries
git clone https://github.com/bxparks/EpoxyDuino.git
git clone https://github.com/bxparks/AUnit.git
git clone https://github.com/espressif/esp32-camera.git
git clone https://git-ce.rwth-aachen.de/thk_libs/microcontrollers/thk_espcamdriver.git
cd -
cp -r src/* /root/Arduino/libraries