|
| 1 | +# BlinkyTree Manual |
| 2 | + |
| 3 | +This directory contains the documentation for the BlinkyTree Christmas tree LED soldering kit, using the Binary Kitchen soldering tutorial template system. |
| 4 | + |
| 5 | +## Files Structure |
| 6 | + |
| 7 | +``` |
| 8 | +manual/ |
| 9 | +├── BlinkyTree_en.tex # English manual source (uses template) |
| 10 | +├── BlinkyTree_de.tex # German manual source (uses template) |
| 11 | +├── BlinkyTree_en.pdf # English manual (generated) |
| 12 | +├── BlinkyTree_de.pdf # German manual (generated) |
| 13 | +├── Makefile # Simple build system |
| 14 | +├── README.md # This file |
| 15 | +├── configuration/ # CSV configuration files |
| 16 | +│ ├── en_config.csv # English project configuration |
| 17 | +│ ├── en_parts.csv # English parts list |
| 18 | +│ ├── en_steps.csv # English assembly steps |
| 19 | +│ ├── de_config.csv # German project configuration |
| 20 | +│ ├── de_parts.csv # German parts list |
| 21 | +│ └── de_steps.csv # German assembly steps |
| 22 | +├── images/ # Assembly photos and diagrams |
| 23 | +│ ├── README.md # Image requirements guide |
| 24 | +│ ├── thumbnail.jpg # Main project image [NEEDED] |
| 25 | +│ ├── step01_*.jpg # Assembly step photos [NEEDED] |
| 26 | +│ └── finished_*.jpg # Completed project photos [NEEDED] |
| 27 | +└── misc/ # Labels and additional materials |
| 28 | + ├── BlinkyTree_label.pdf # Kit label [generated] |
| 29 | + └── BlinkyTree_boxlabel.pdf # Box label [generated] |
| 30 | +``` |
| 31 | + |
| 32 | +## Binary Kitchen Template System |
| 33 | + |
| 34 | +This manual uses the standardized Binary Kitchen soldering tutorial template system, which: |
| 35 | + |
| 36 | +- **Automatically generates** the complete manual from CSV configuration files |
| 37 | +- **Supports multiple languages** (English and German) |
| 38 | +- **Provides consistent formatting** across all Binary Kitchen tutorials |
| 39 | +- **Includes standard sections** like safety warnings, troubleshooting, etc. |
| 40 | + |
| 41 | +### Configuration Files (CSV Format) |
| 42 | + |
| 43 | +#### `*_config.csv` |
| 44 | +Project metadata and settings: |
| 45 | +- Title, difficulty level, build time |
| 46 | +- Version information and licensing |
| 47 | +- Safety warnings and general information |
| 48 | + |
| 49 | +#### `*_parts.csv` |
| 50 | +Component list in tabular format: |
| 51 | +- Quantity, component name, description |
| 52 | +- Color codes and markings |
| 53 | +- Used for automatic parts list generation |
| 54 | + |
| 55 | +#### `*_steps.csv` |
| 56 | +Step-by-step assembly instructions: |
| 57 | +- Image filename, instruction text |
| 58 | +- Detailed assembly procedures with tips |
| 59 | +- Used for automatic instruction generation |
| 60 | + |
| 61 | +## Building the Manual |
| 62 | + |
| 63 | +### Prerequisites |
| 64 | +- LuaLaTeX (part of modern TeX distributions) |
| 65 | +- Binary Kitchen template files in `../LaTeX_config/` |
| 66 | + |
| 67 | +### Build Commands |
| 68 | +```bash |
| 69 | +# Build both language versions |
| 70 | +make |
| 71 | + |
| 72 | +# Build individual versions |
| 73 | +make BlinkyTree_en.pdf |
| 74 | +make BlinkyTree_de.pdf |
| 75 | + |
| 76 | +# Clean build artifacts |
| 77 | +make clean |
| 78 | + |
| 79 | +# Clean everything including PDFs |
| 80 | +make distclean |
| 81 | +``` |
| 82 | + |
| 83 | +## Content Status |
| 84 | + |
| 85 | +### Completed ✅ |
| 86 | +- CSV configuration framework |
| 87 | +- English and German configurations |
| 88 | +- Basic LaTeX templates |
| 89 | +- Parts list definitions |
| 90 | +- Assembly step outlines |
| 91 | + |
| 92 | +### In Progress 🔄 |
| 93 | +- Assembly instruction refinement |
| 94 | +- Image requirements documentation |
| 95 | + |
| 96 | +### Needed 📋 |
| 97 | +- **Assembly photos** - Step-by-step photography |
| 98 | +- **Thumbnail image** - Main project photo for landing page |
| 99 | +- **Finished photos** - Completed project documentation |
| 100 | +- **Testing and validation** - Verify all instructions |
| 101 | + |
| 102 | +## Template System Features |
| 103 | + |
| 104 | +The Binary Kitchen template automatically provides: |
| 105 | + |
| 106 | +### Standard Sections |
| 107 | +- **Title page** with project info and difficulty |
| 108 | +- **Safety warnings** and tool requirements |
| 109 | +- **Parts list** with component identification |
| 110 | +- **Assembly instructions** with step-by-step photos |
| 111 | +- **Testing procedures** and troubleshooting |
| 112 | +- **Common failures** reference section |
| 113 | + |
| 114 | +### Multilingual Support |
| 115 | +- Automatic language selection based on filename |
| 116 | +- Shared configuration with language-specific text |
| 117 | +- Consistent formatting across languages |
| 118 | + |
| 119 | +### Professional Output |
| 120 | +- Standard Binary Kitchen branding |
| 121 | +- Consistent typography and layout |
| 122 | +- Print-ready PDF generation |
| 123 | +- Web-friendly formatting |
| 124 | + |
| 125 | +## Creating Content |
| 126 | + |
| 127 | +### Writing Steps |
| 128 | +1. **Update CSV files** with your specific content |
| 129 | +2. **Take assembly photos** following the image guidelines |
| 130 | +3. **Build and review** the generated PDF |
| 131 | +4. **Iterate** until content is complete and accurate |
| 132 | + |
| 133 | +### CSV Format Guidelines |
| 134 | +- Use **semicolons (;)** to separate instruction paragraphs |
| 135 | +- Use **commas in braces {,}** for literal commas in text |
| 136 | +- Reference parts with **\usePart{component}** macro |
| 137 | +- Include **safety warnings** and **tips** in instructions |
| 138 | + |
| 139 | +## Dependencies |
| 140 | + |
| 141 | +Requires the shared Binary Kitchen LaTeX configuration: |
| 142 | +- `../LaTeX_config/solderingTut.tex` - Main template |
| 143 | +- `../LaTeX_config/BK-solderingtut.sty` - Style definitions |
| 144 | +- Various support files for formatting and translations |
| 145 | + |
| 146 | +Ensure the parent repository structure is intact when building. |
0 commit comments