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.
This commit is contained in:
Jeena 2017-05-14 06:31:58 +02:00
parent 05d4799d7f
commit 4dc9e79f28
6 changed files with 727 additions and 7 deletions

11
flash.sh Executable file
View file

@ -0,0 +1,11 @@
#!/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