diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..c071cac --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Stefan Kögl diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c8a8be7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,14 @@ +This file is part of reflowctl. + +reflowctl is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +reflowctl is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with reflowctl. If not, see . diff --git a/README.html b/README.html new file mode 100644 index 0000000..4a9a889 --- /dev/null +++ b/README.html @@ -0,0 +1,328 @@ + + + + + + +reflowctl howto + + + +
+

reflowctl howto

+

Installation

+ +

You can use the reflowctl sketch as is in arduino IDE, or as we prefer with the editor of choice and a sane build environment.

+

Then you have to install cmake, for the serialmon.py script python and pyserial. The complete workflow to crosscompile and upload our sketch is decribed below:

+
+cd reflow
+mkdir build
+cmake ..
+make
+make reflowctl-upload
+
+
+ + diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..4870e79 --- /dev/null +++ b/README.rst @@ -0,0 +1,15 @@ +reflowctl howto +=============== + +Installation +------------ + +You can use the reflowctl sketch as is in arduino IDE, or as we prefer with the editor of choice and a sane build environment. + +Then you have to install cmake, for the serialmon.py script python and pyserial. The complete workflow to crosscompile and upload our sketch is decribed below:: + + cd reflow + mkdir build + cmake .. + make + make reflowctl-upload