projects
/
weathermon.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
3f422755d920c6dcbd96b1131e07e326dc713df7
[weathermon.git]
/
weathermon.sh
1
#!/bin/sh
2
3
ARDUINO_PORT=`uci get weathermon.serial.port`
4
BAUD=`uci get weathermon.serial.baud`
5
stty -F $ARDUINO_PORT $BAUD
6
7
while read LINE; do
8
weathermon.lua $LINE
9
done < $ARDUINO_PORT