mirror of
https://github.com/kevinveenbirkenbach/physical-interface.git
synced 2024-11-13 05:41:05 +01:00
11 lines
565 B
Bash
11 lines
565 B
Bash
#!/bin/bash
|
|
DEVICE="/dev/ttyUSB0"
|
|
BAUT_RATE="9600"
|
|
echo "Setting up output device \"$DEVICE\" with baut rate $BAUT_RATE." &&
|
|
stty -F "$DEVICE" cs8 "$BAUT_RATE" ignbrk -brkint -imaxbel -opost -onlcr -isig -icanon -iexten -echo -echoe -echok -echoctl -echoke noflsh -ixon -crtscts &&
|
|
echo "Start interactive session with screen. You can close this session via \"screen -X -S arduino quit\"." &&
|
|
gnome-terminal -- /bin/bash -c 'screen -S "arduino" "'$DEVICE'" "'$BAUT_RATE'";' &&
|
|
echo "To terminate screen type enter..." &&
|
|
read &&
|
|
screen -X -S arduino quit && exit 1
|