projects
/
weathermon.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Old version cleaned
[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