-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.sh
More file actions
executable file
·23 lines (18 loc) · 737 Bytes
/
env.sh
File metadata and controls
executable file
·23 lines (18 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
echo "Setting environment variables..."
export ARDUINO_DIR="/Users/pmadigan/research/levelsensor/levelsensor/arduino/build/macosx/work/Arduino.app/Contents/Java"
echo "ARDUINO_DIR = $ARDUINO_DIR"
export ARDMK_DIR="/Users/pmadigan/research/levelsensor/levelsensor/arduino-mk"
echo "ARDMK_DIR = $ARDMK_DIR"
export AVR_TOOLS_DIR="/opt/local/"
echo "AVR_TOOLS_DIR = $AVR_TOOLS_DIR"
export MONITOR_PORT="/dev/cu.usbmodem1411"
echo "MONITOR_PORT = $MONITOR_PORT"
export BOARD_TAG="uno"
echo "BOARD_TAG = $BOARD_TAG"
export LS_DIR="/Users/pmadigan/research/levelsensor/levelsensor/projs/levelsensor"
echo "LS_DIR = $LS_DIR"
echo "Done!"
echo ""
alias levelsensor="python -i $LS_DIR/control.py"
echo "Type 'levelsensor' to begin"