Updated the readme to include the licence and gallery.
This commit is contained in:
parent
34a9b0e87b
commit
8ce079214a
|
@ -1,3 +1,4 @@
|
|||
# A gallery of projects made with NopSCADlib
|
||||
# ArduinoThermostat
|
||||
Arduino thermostat to control a beer fridge to use it as an environmental chamber.
|
||||
|
||||
|
|
|
@ -5,6 +5,10 @@ It contains lots of vitamins (the RepRap term for non-printed parts), some gener
|
|||
some utilities. There are also Python scripts to generate Bills of Materials (BOMs),
|
||||
STL files for all the printed parts and DXF files for CNC routed parts in a project.
|
||||
|
||||
For some of examples of what it can make see the [gallery](gallery/readme.md).
|
||||
|
||||
The license is GNU General Public License v3.0, see [COPYING](COPYING).
|
||||
|
||||
<img src="libtest.png" width="100%"/>
|
||||
|
||||
|
||||
|
|
|
@ -39,6 +39,7 @@ def gallery():
|
|||
|
||||
projects = [i for i in os.listdir(project_dir) if os.path.isdir(project_dir + '/' + i + '/assemblies')]
|
||||
with open(output_name, 'wt') as output_file:
|
||||
print("# A gallery of projects made with NopSCADlib", file = output_file)
|
||||
for project in projects:
|
||||
path = project_dir + '/' + project
|
||||
print(project)
|
||||
|
|
|
@ -198,6 +198,10 @@ It contains lots of vitamins (the RepRap term for non-printed parts), some gener
|
|||
some utilities. There are also Python scripts to generate Bills of Materials (BOMs),
|
||||
STL files for all the printed parts and DXF files for CNC routed parts in a project.
|
||||
|
||||
For some of examples of what it can make see the [gallery](gallery/readme.md).
|
||||
|
||||
The license is GNU General Public License v3.0, see [COPYING](COPYING).
|
||||
|
||||
<img src="libtest.png" width="100%"/>\n
|
||||
''', file = doc_file)
|
||||
|
||||
|
|
Loading…
Reference in New Issue