π€ Everything IoT in regards to Zufall Labs hardware products
/
βββ .github/ # GitHub specific configurations
β βββ workflows/ # GitHub Actions CI/CD pipelines
β βββ ISSUE_TEMPLATE/ # Issue templates
β βββ PULL_REQUEST_TEMPLATE/ # PR templates
β
βββ hardware/ # All hardware-related files
β βββ mechanical/ # 3D designs and mechanical components
β β βββ cad/ # CAD files (Fusion 360, SolidWorks, etc.)
β β βββ stl/ # 3D printable files
β β βββ drawings/ # Technical drawings and dimensions
β β
β βββ electronics/ # Electronic design files
β β βββ kicad/ # KiCad project files
β β β βββ lib/ # Custom component libraries
β β β βββ fp-lib-table # Footprint library configurations
β β β βββ sym-lib-table # Symbol library configurations
β β βββ datasheets/ # Component datasheets
β β βββ production/ # Gerber files, BOM, assembly instructions
β β
β βββ interfaces/ # Hardware interface specifications
β βββ connectors/ # Connector pinouts and specifications
β βββ protocols/ # Communication protocol specifications
β
βββ firmware/ # Device firmware
β βββ bootloader/ # Bootloader source code
β βββ main/ # Main firmware source code
β βββ libs/ # Shared firmware libraries
β βββ tools/ # Firmware-specific tools
β
βββ software/ # Software components
β βββ core/ # Core business logic
β βββ adapters/ # Hardware abstraction layers
β β βββ sensor-adapters/ # Different sensor implementations
β β βββ comm-adapters/ # Communication protocol adapters
β βββ api/ # API definitions and implementations
β βββ web/ # Web applications
β βββ mobile/ # Mobile applications
β βββ tools/ # Development and debugging tools
β
βββ tests/ # Test suites
β βββ hardware/ # Hardware test specifications
β βββ firmware/ # Firmware test suites
β βββ software/ # Software test suites
β
βββ docs/ # Documentation
β βββ architecture/ # System architecture documents
β βββ hardware/ # Hardware documentation
β βββ firmware/ # Firmware documentation
β βββ software/ # Software documentation
β βββ api/ # API documentation
β βββ user/ # End-user documentation
β
βββ tools/ # Development and build tools
β βββ build-scripts/ # Build automation scripts
β βββ ci-scripts/ # CI/CD helper scripts
β βββ dev-tools/ # Development utilities
β
βββ config/ # Configuration files
β βββ dev/ # Development environment configs
β βββ prod/ # Production environment configs
β βββ test/ # Test environment configs
β
βββ .gitignore # Git ignore rules
βββ .editorconfig # Editor configuration
βββ LICENSE # Project license
βββ README.md # Project overview and setup instructions
βββ CONTRIBUTING.md # Contribution guidelines