esp8266-temperature/flash.sh
Jeena 4dc9e79f28 Add GPL license, better readme and flash-tool
Setting it up so it's a propper project which can be released. It's
still not showing any temperature and there is no description of
how to set up the hardware yet.
2017-05-14 06:31:58 +02:00

11 lines
229 B
Bash
Executable file

#!/bin/sh
luafiles=`find . -name "*.lua" -not -path "./luatool/*" -exec basename \{} \;`
for f in $luafiles
do
sudo python2 ./luatool/luatool/luatool.py --port /dev/ttyUSB0 --src $f --dest $f -b 74880 --delay 0.05
done