├── .gitignore ├── Dragonflyte ├── Boards │ ├── Dragonfleye │ │ ├── CAD │ │ │ ├── CameraSketch.SLDPRT │ │ │ ├── LensMount.SLDPRT │ │ │ ├── LensMount.STEP │ │ │ ├── Outline.DXF │ │ │ └── Outline.SLDPRT │ │ ├── Connector.Harness │ │ ├── Connector.SchDoc │ │ ├── Dragonfleye.OutJob │ │ ├── Dragonfleye.PcbDoc │ │ ├── Dragonfleye.PrjPcb │ │ ├── Dragonfleye.PrjPcbStructure │ │ ├── Dragonfleye.SchDoc │ │ ├── LEDs.Harness │ │ ├── LEDs.SchDoc │ │ ├── Power.SchDoc │ │ ├── Project Outputs for Dragonfleye │ │ │ ├── PDF │ │ │ │ └── Dragonfleye.PDF │ │ │ └── STEP │ │ │ │ └── Dragonfleye.step │ │ ├── Sensor-RGB.Harness │ │ ├── Sensor-RGB.SchDoc │ │ ├── Sensor-ToF.Harness │ │ └── Sensor-ToF.SchDoc │ └── Dragonflyte │ │ ├── CAD │ │ ├── Outline.DXF │ │ └── Outline.SLDPRT │ │ ├── Cameras.Harness │ │ ├── Cameras.SchDoc │ │ ├── Components.SchLib │ │ ├── Dragonflyte.OutJob │ │ ├── Dragonflyte.PcbDoc │ │ ├── Dragonflyte.PcbDoc.htm │ │ ├── Dragonflyte.PrjPcb │ │ ├── Dragonflyte.PrjPcbStructure │ │ ├── Dragonflyte.SchDoc │ │ ├── Footprints.PcbLib │ │ ├── MPU-Control.SchDoc │ │ ├── MPU-Memory.SchDoc │ │ ├── MPU-Peripherals.Harness │ │ ├── MPU-Peripherals.SchDoc │ │ ├── MPU-Power.SchDoc │ │ ├── MicrophoneArray.Harness │ │ ├── MicrophoneArray.SchDoc │ │ ├── PWMDriver.Harness │ │ ├── PWMDriver.SchDoc │ │ ├── PowerCommConnector.Harness │ │ ├── PowerCommConnector.SchDoc │ │ ├── Project Outputs for Dragonflyte │ │ ├── BGA Escape Route - Dragonflyte.html │ │ ├── BGA Escape Route - Dragonflyte.txt │ │ ├── BOM │ │ │ ├── Dragonflyte.csv │ │ │ ├── Dragonflyte.xls │ │ │ └── Dragonflyte.xlsx │ │ ├── Design Rule Check - Dragonflyte.drc │ │ ├── Design Rule Check - Dragonflyte.html │ │ ├── Dragonflyte.step │ │ └── PDF │ │ │ └── Dragonflyte.PDF │ │ ├── Sensors.Harness │ │ ├── Sensors.SchDoc │ │ ├── Supplies.SchDoc │ │ ├── USB.Harness │ │ ├── USB.SchDoc │ │ ├── UWB.Harness │ │ ├── UWB.SchDoc │ │ ├── WiFi.Harness │ │ └── WiFi.SchDoc ├── Dragonflyte.MbaDoc ├── Dragonflyte.MbsDoc ├── Dragonflyte.PrjMbd └── Dragonflyte.PrjMbdStructure ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/.gitignore -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/CAD/CameraSketch.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/CAD/CameraSketch.SLDPRT -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/CAD/LensMount.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/CAD/LensMount.SLDPRT -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/CAD/LensMount.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/CAD/LensMount.STEP -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/CAD/Outline.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/CAD/Outline.DXF -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/CAD/Outline.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/CAD/Outline.SLDPRT -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Connector.Harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Connector.Harness -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Connector.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Connector.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Dragonfleye.OutJob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Dragonfleye.OutJob -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Dragonfleye.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Dragonfleye.PcbDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Dragonfleye.PrjPcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Dragonfleye.PrjPcb -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Dragonfleye.PrjPcbStructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Dragonfleye.PrjPcbStructure -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Dragonfleye.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Dragonfleye.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/LEDs.Harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/LEDs.Harness -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/LEDs.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/LEDs.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Power.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Power.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Project Outputs for Dragonfleye/PDF/Dragonfleye.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Project Outputs for Dragonfleye/PDF/Dragonfleye.PDF -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Project Outputs for Dragonfleye/STEP/Dragonfleye.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Project Outputs for Dragonfleye/STEP/Dragonfleye.step -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Sensor-RGB.Harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Sensor-RGB.Harness -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Sensor-RGB.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Sensor-RGB.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Sensor-ToF.Harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Sensor-ToF.Harness -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonfleye/Sensor-ToF.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonfleye/Sensor-ToF.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/CAD/Outline.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/CAD/Outline.DXF -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/CAD/Outline.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/CAD/Outline.SLDPRT -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Cameras.Harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Cameras.Harness -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Cameras.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Cameras.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Components.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Components.SchLib -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Dragonflyte.OutJob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Dragonflyte.OutJob -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Dragonflyte.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Dragonflyte.PcbDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Dragonflyte.PcbDoc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Dragonflyte.PcbDoc.htm -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Dragonflyte.PrjPcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Dragonflyte.PrjPcb -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Dragonflyte.PrjPcbStructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Dragonflyte.PrjPcbStructure -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Dragonflyte.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Dragonflyte.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Footprints.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Footprints.PcbLib -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/MPU-Control.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/MPU-Control.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/MPU-Memory.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/MPU-Memory.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/MPU-Peripherals.Harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/MPU-Peripherals.Harness -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/MPU-Peripherals.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/MPU-Peripherals.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/MPU-Power.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/MPU-Power.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/MicrophoneArray.Harness: -------------------------------------------------------------------------------- 1 | TDM=WS,SCK,SD 2 | -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/MicrophoneArray.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/MicrophoneArray.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/PWMDriver.Harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/PWMDriver.Harness -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/PWMDriver.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/PWMDriver.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/PowerCommConnector.Harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/PowerCommConnector.Harness -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/PowerCommConnector.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/PowerCommConnector.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/BGA Escape Route - Dragonflyte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/BGA Escape Route - Dragonflyte.html -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/BGA Escape Route - Dragonflyte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/BGA Escape Route - Dragonflyte.txt -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/BOM/Dragonflyte.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/BOM/Dragonflyte.csv -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/BOM/Dragonflyte.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/BOM/Dragonflyte.xls -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/BOM/Dragonflyte.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/BOM/Dragonflyte.xlsx -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/Design Rule Check - Dragonflyte.drc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/Design Rule Check - Dragonflyte.drc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/Design Rule Check - Dragonflyte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/Design Rule Check - Dragonflyte.html -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/Dragonflyte.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/Dragonflyte.step -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/PDF/Dragonflyte.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Project Outputs for Dragonflyte/PDF/Dragonflyte.PDF -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Sensors.Harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Sensors.Harness -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Sensors.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Sensors.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/Supplies.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/Supplies.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/USB.Harness: -------------------------------------------------------------------------------- 1 | UART=RX,TX 2 | USB=DN,DP 3 | -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/USB.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/USB.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/UWB.Harness: -------------------------------------------------------------------------------- 1 | SPI=SCLK,MISO,MOSI,CS 2 | -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/UWB.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/UWB.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/WiFi.Harness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/WiFi.Harness -------------------------------------------------------------------------------- /Dragonflyte/Boards/Dragonflyte/WiFi.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Boards/Dragonflyte/WiFi.SchDoc -------------------------------------------------------------------------------- /Dragonflyte/Dragonflyte.MbaDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Dragonflyte.MbaDoc -------------------------------------------------------------------------------- /Dragonflyte/Dragonflyte.MbsDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Dragonflyte.MbsDoc -------------------------------------------------------------------------------- /Dragonflyte/Dragonflyte.PrjMbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Dragonflyte.PrjMbd -------------------------------------------------------------------------------- /Dragonflyte/Dragonflyte.PrjMbdStructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/Dragonflyte/Dragonflyte.PrjMbdStructure -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelchang/dragonflyte-hardware/HEAD/README.md --------------------------------------------------------------------------------