mirror of
https://github.com/nophead/Mendel90.git
synced 2025-01-16 20:38:15 +01:00
ad21323ec6
Tweaks to the huxley extruder. Now shows hot end filament diameter on the BOM. Moved huxley spool holder back to give more room for lighting. Updated README.md. Added huxley to command line usage messages.
23 lines
490 B
Python
Executable File
23 lines
490 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
from bom import boms
|
|
from sheets import sheets
|
|
from stls import stls
|
|
from plates import plates
|
|
from accessories import accessories
|
|
|
|
def make_machine(machine):
|
|
boms(machine)
|
|
sheets(machine)
|
|
stls(machine)
|
|
accessories(machine)
|
|
plates(machine)
|
|
|
|
if __name__ == '__main__':
|
|
if len(sys.argv) > 1:
|
|
make_machine(sys.argv[1])
|
|
else:
|
|
print("usage: make_machine dibond|mendel|sturdy|huxley|your_machine")
|
|
sys.exit(1)
|