Deliverables |¶
GANTT¶
I made the Gantt in Ganttophant app in docs. I found it very easy and interesting.
BoM bill of materials¶
Te bill of materials is divided by each part of the loom to make it easier
Materials¶
Slide show¶
Story telling script¶
I imagine the Loom One project presentation by comparision with the 3D printing development.
Objective Fabricademy sprint:¶
- 20 cm, 80 thread capability loom
- Better Fablabable design (Without Leclercs Dorothy’s parts)
- Low capability software, AYAB evealuation
- Webpage architecture / Wizard of Oz enabled
- Community and long tail strategy in place
FABRICATION FILES¶
You can find all the construction files:
All the mechanical models 1 you can download all the cutting dxf for the router CNC and the laser cutter also you can find all 3d printed parts
For the electronics you can find the Gerber files 2 I used JLCPCB for manufacturing them, but there is still work in progress and the final design will soon be online.
footnote fabrication files
Fabrication files are a necessary element for evaluation. You can add the fabrication files at the bottom of the page and simply link them as a footnote. This was your work stays organised and files will be all together at the bottom of the page. Footnotes are created using [ ^ 1 ] (without spaces, and referenced as you see at the last chapter of this page) You can reference the fabrication files to multiple places on your page as you see for footnote nr. 2 also present in the Gallery.
Code Example¶
Use the three backticks to separate code.
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
How-Tos & Tutorials¶
Upload templates or tutorials you created for your personal project, it can also be links to instructables when the project is educational, protocols when working with growing materials and so on..