8 lines
155 B
Bash
Executable File
8 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BUILD_DIR="./build"
|
|
BOARD="arduino:avr:uno"
|
|
PROJECT_PATH="./src/LED_Panel"
|
|
|
|
arduino-cli compile --output-dir $BUILD_DIR -b $BOARD $PROJECT_PATH
|