Skip to content
Snippets Groups Projects
Select Git revision
  • b5d14999ce0e4bb2b61009896ef50699df61811d
  • master default protected
2 results

ISearchStrategy.cs

Blame
  • 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