├── BOM ├── FDL-3 BOM Auto Tail.pdf ├── FDL-3 BOM Nose.pdf ├── FDL-3 BOM Robo Stock.pdf ├── FDL-3 BOM Semi Tail.pdf └── FDL-3 BOM.xlsx ├── CAD ├── FDL-3 Main.f3d ├── FDL-3 Nose Forty.step ├── FDL-3 Nose Full.step ├── FDL-3 Nose HIR.step ├── FDL-3 Nose Shorty.step ├── FDL-3 Robo Stock.step ├── FDL-3 Tail Auto.step └── FDL-3 Tail Semi.step ├── ESC ├── BLHeli_32 │ ├── FDL-3 LDO Crux.ini │ └── FDL_BLHeli32_Wholetone_Damping.ini └── SimonK │ └── afro_nfet.hex ├── Firmware ├── FDL-3-Semi_Firmware_v1.00 │ └── FDL-3-Semi_Firmware_v1.00.ino ├── FDL-3_Firmware_v1.01preorder │ └── FDL-3_Firmware_v1.01preorder.hex ├── FDL-3_Firmware_v1.02 │ └── FDL-3_Firmware_v1.02.hex ├── FDL-3_Firmware_v1.03 │ ├── FDL-3_Firmware_v1.03.hex │ └── FDL-3_Firmware_v1.03.ino ├── FDL-3_Firmware_v1.04 │ ├── CycleHelpers.ino │ ├── FDL-3_Firmware_v1.04.ino │ ├── FDL-3_Firmware_v1.04.ino.hex │ ├── FireCycle.ino │ ├── Presets.ino │ ├── RenderHelpers.ino │ └── Renderer.ino ├── FDL-3_Firmware_v1.05 │ ├── CycleHelpers.ino │ ├── FDL-3_Firmware_v1.05.ino │ ├── FDL-3_Firmware_v1.05.ino.hex │ ├── FireCycle.ino │ ├── Presets.ino │ ├── RenderHelpers.ino │ ├── Renderer.ino │ └── Utils.ino ├── README.md ├── XLoader │ ├── XLoader.exe │ ├── avrdude.conf │ ├── avrdude.exe │ ├── devices.txt │ ├── libusb0.dll │ └── license.txt └── libraries │ ├── Encoder │ ├── Encoder.cpp │ ├── Encoder.h │ ├── README.md │ ├── examples │ │ ├── Basic │ │ │ └── Basic.pde │ │ ├── NoInterrupts │ │ │ └── NoInterrupts.pde │ │ ├── SpeedTest │ │ │ └── SpeedTest.pde │ │ └── TwoKnobs │ │ │ └── TwoKnobs.pde │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── utility │ │ ├── direct_pin_read.h │ │ ├── interrupt_config.h │ │ └── interrupt_pins.h │ ├── SparkFun_MicroView │ ├── .DS_Store │ ├── LICENSE.md │ ├── README.md │ ├── examples │ │ ├── LearningKit │ │ │ ├── Blink │ │ │ │ └── Blink.ino │ │ │ ├── Circuit1 │ │ │ │ └── Circuit1.ino │ │ │ ├── Circuit10 │ │ │ │ └── Circuit10.ino │ │ │ ├── Circuit11 │ │ │ │ └── Circuit11.ino │ │ │ ├── Circuit2 │ │ │ │ └── Circuit2.ino │ │ │ ├── Circuit3 │ │ │ │ └── Circuit3.ino │ │ │ ├── Circuit4 │ │ │ │ └── Circuit4.ino │ │ │ ├── Circuit5 │ │ │ │ └── Circuit5.ino │ │ │ ├── Circuit6 │ │ │ │ └── Circuit6.ino │ │ │ ├── Circuit7 │ │ │ │ └── Circuit7.ino │ │ │ ├── Circuit8 │ │ │ │ └── Circuit8.ino │ │ │ ├── Circuit9 │ │ │ │ └── Circuit9.ino │ │ │ └── HelloWorld │ │ │ │ └── HelloWorld.ino │ │ ├── MicroViewAnalogClock │ │ │ └── MicroViewAnalogClock.ino │ │ ├── MicroViewCube │ │ │ └── MicroViewCube.ino │ │ ├── MicroViewDemo │ │ │ └── MicroViewDemo.ino │ │ ├── MicroViewFlashingHeart │ │ │ └── MicroViewFlashingHeart.ino │ │ ├── MicroViewPong │ │ │ ├── LICENSE │ │ │ └── MicroViewPong.ino │ │ ├── MicroViewSineWave │ │ │ └── MicroViewSineWave.ino │ │ ├── MicroViewSlider │ │ │ └── MicroViewSlider.ino │ │ ├── MicroViewVSlider │ │ │ └── MicroViewVSlider.ino │ │ ├── MicroViewWidgetDemo │ │ │ └── MicroViewWidgetDemo.ino │ │ └── MicroViewWidgetRedraw │ │ │ └── MicroViewWidgetRedraw.ino │ ├── extras │ │ ├── OLED-Datasheet_SAS1-02007-A UG-6448HLBEG03 (WiseChip).pdf │ │ └── README.md │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── .DS_Store │ │ ├── MicroView.cpp │ │ ├── MicroView.h │ │ └── util │ │ ├── 7segment.h │ │ ├── font5x7.h │ │ ├── font8x16.h │ │ ├── fontlargenumber.h │ │ ├── space01.h │ │ ├── space02.h │ │ └── space03.h │ ├── Time-master │ ├── DateStrings.cpp │ ├── Readme.txt │ ├── Time.cpp │ ├── Time.h │ ├── TimeLib.h │ ├── examples │ │ ├── Processing │ │ │ └── SyncArduinoClock │ │ │ │ ├── SyncArduinoClock.pde │ │ │ │ └── readme.txt │ │ ├── TimeArduinoDue │ │ │ └── TimeArduinoDue.ino │ │ ├── TimeGPS │ │ │ └── TimeGPS.ino │ │ ├── TimeNTP │ │ │ └── TimeNTP.ino │ │ ├── TimeNTP_ESP8266WiFi │ │ │ └── TimeNTP_ESP8266WiFi.ino │ │ ├── TimeRTC │ │ │ └── TimeRTC.ino │ │ ├── TimeRTCLog │ │ │ └── TimeRTCLog.ino │ │ ├── TimeRTCSet │ │ │ └── TimeRTCSet.ino │ │ ├── TimeSerial │ │ │ └── TimeSerial.ino │ │ ├── TimeSerialDateStrings │ │ │ └── TimeSerialDateStrings.ino │ │ └── TimeTeensy3 │ │ │ └── TimeTeensy3.ino │ ├── keywords.txt │ ├── library.json │ └── library.properties │ └── readme.txt ├── PCB ├── CTL │ ├── FDL-3 CTL PCB Schematic.PNG │ ├── FDL-3 CTRL - v1.4.brd │ └── FDL-3 CTRL - v1.4.sch ├── DCP │ ├── FDL-3 DCP - v1.3.brd │ ├── FDL-3 DCP - v1.3.sch │ └── FDL-3 DCP PCB Schematic.PNG ├── FDL-3 Wiring Diagram.png ├── PWR │ ├── FDL-3 PWR - v2.brd │ ├── FDL-3 PWR - v2.sch │ └── FDL-3 PWR PCB Schematic.PNG └── TRG │ ├── FDL-3 TRG PCB Schematic.PNG │ ├── FDL-3 TRG.brd │ └── FDL-3 TRG.sch ├── README.md └── STL ├── Flywheels ├── 1.6mm spacer.stl ├── 2.0mm spacer.stl ├── Flywheel Crux 9mm.stl ├── Flywheel Crux HIR.stl ├── Flywheel Emax RS2205S 9mm.stl ├── Flywheel Lumenier MB2206 9mm.stl ├── Flywheel Lumenier RX2205 9mm.stl ├── Flywheel Lumenier RX2205 HIR.stl ├── Flywheel Vspec 2205 9mm.stl └── README.md ├── Nose Forty ├── Barrel Inner L.stl ├── Barrel Inner R.stl ├── Barrel Outer L.stl ├── Barrel Outer R.stl ├── Cowl Lower.stl ├── Cowl Upper.stl ├── ESC Housing Cap.stl ├── ESC Housing Clamp.stl ├── ESC Housing.stl ├── Grip Fat Boi.stl ├── Mag Adapter.stl ├── MagRel Block.stl ├── MagRel Catch.stl ├── MagRel Lever.stl ├── MagRel Link Long.stl ├── MagRel Link Short.stl ├── MagRel Pivot.stl ├── Magwell.stl ├── Muzzle.stl └── Rail Top Front.stl ├── Nose Full ├── Barrel Inner L.stl ├── Barrel Inner R.stl ├── Barrel Outer L.stl ├── Barrel Outer R.stl ├── Blaster Stand.stl ├── Cowl Lower.stl ├── Cowl Upper.stl ├── ESC Housing Cap.stl ├── ESC Housing.stl ├── Grip Hip Shooter.stl ├── Grip Mag Gripper.stl ├── MagRel Block.stl ├── MagRel Catch.stl ├── MagRel Lever.stl ├── MagRel Link Long.stl ├── MagRel Link Short.stl ├── MagRel Pivot.stl ├── Magwell Cap L.stl ├── Magwell Cap R.stl ├── Magwell Lower.stl ├── Magwell Upper.stl ├── Muzzle.stl └── Rail Top Front.stl ├── Nose HIR ├── Barrel Inner L.stl ├── Barrel Inner R.stl ├── Barrel Outer L.stl ├── Barrel Outer R.stl ├── Blaster Stand HIR.stl ├── Cowl Lower.stl ├── Cowl Upper.stl ├── ESC Housing Cap.stl ├── ESC Housing.stl ├── Grip Hip Shooter.stl ├── Grip Mag Gripper.stl ├── Hopup.stl ├── MagRel Catch.stl ├── MagRel Lever.stl ├── MagRel_Block.stl ├── Magwell.stl └── Rail Top Front.stl ├── Nose Shorty ├── Barrel Inner L.stl ├── Barrel Inner R.stl ├── Barrel Outer L.stl ├── Barrel Outer R.stl ├── Blaster Stand.stl ├── Cowl Lower.stl ├── Cowl Upper.stl ├── ESC Housing Cap.stl ├── ESC Housing.stl ├── Grip Hip Shooter.stl ├── Grip Mag Gripper.stl ├── MagRel Block.stl ├── MagRel Catch.stl ├── MagRel Lever.stl ├── MagRel Link Long.stl ├── MagRel Link Short.stl ├── MagRel Pivot.stl ├── Magwell.stl ├── Muzzle.stl └── Rail Top Front.stl ├── README.md ├── Robo Stock ├── Arm Core.stl ├── Arm Insert.stl ├── Arm Panel.stl ├── Butt Base.stl ├── Butt Main.stl └── Stock Base.stl ├── Tail Auto ├── Cap Mid NoNut.stl ├── Cap Mid.stl ├── Cap Rear.stl ├── Handle Core .stl ├── Handle Guard.stl ├── Handle Scale L.stl ├── Handle Scale R.stl ├── Knob.stl ├── PCB Mount.stl ├── Paddle.stl ├── Pusher Housing Cap.stl ├── Pusher Housing Main.stl ├── Pusher.stl ├── Rail Top Rear.stl ├── Side Panel L Holdster.stl ├── Side Panel L.stl ├── Side Panel R Holdster.stl ├── Side Panel R.stl ├── Sling Point.stl ├── Spinner Bushing.stl ├── Spinner.stl ├── Stock Att.stl ├── Trigger.stl └── Underbelly.stl └── Tail Semi ├── Cap Mid NoNut.stl ├── Cap Mid.stl ├── Cap Rear.stl ├── Gear Plate L.stl ├── Gear Plate R.stl ├── Gear_Drive.stl ├── Gear_Little.stl ├── Gear_Split.stl ├── Handle Core.stl ├── Handle Guard.stl ├── Handle Scale L.stl ├── Handle Scale R.stl ├── Paddle.stl ├── Pusher Guide Base.stl ├── Pusher Guide Tower.stl ├── Pusher.stl ├── Rail Top Rear.stl ├── Rev Trigger.stl ├── Side Panel L Hold.stl ├── Side Panel L.stl ├── Side Panel R Hold.stl ├── Side Panel R.stl ├── Stock Att.stl ├── Trigger.stl └── Underbelly.stl /BOM/FDL-3 BOM Auto Tail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/BOM/FDL-3 BOM Auto Tail.pdf -------------------------------------------------------------------------------- /BOM/FDL-3 BOM Nose.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/BOM/FDL-3 BOM Nose.pdf -------------------------------------------------------------------------------- /BOM/FDL-3 BOM Robo Stock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/BOM/FDL-3 BOM Robo Stock.pdf -------------------------------------------------------------------------------- /BOM/FDL-3 BOM Semi Tail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/BOM/FDL-3 BOM Semi Tail.pdf -------------------------------------------------------------------------------- /BOM/FDL-3 BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/BOM/FDL-3 BOM.xlsx -------------------------------------------------------------------------------- /CAD/FDL-3 Main.f3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/CAD/FDL-3 Main.f3d -------------------------------------------------------------------------------- /CAD/FDL-3 Nose Forty.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/CAD/FDL-3 Nose Forty.step -------------------------------------------------------------------------------- /CAD/FDL-3 Nose Full.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/CAD/FDL-3 Nose Full.step -------------------------------------------------------------------------------- /CAD/FDL-3 Nose HIR.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/CAD/FDL-3 Nose HIR.step -------------------------------------------------------------------------------- /CAD/FDL-3 Nose Shorty.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/CAD/FDL-3 Nose Shorty.step -------------------------------------------------------------------------------- /CAD/FDL-3 Robo Stock.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/CAD/FDL-3 Robo Stock.step -------------------------------------------------------------------------------- /CAD/FDL-3 Tail Auto.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/CAD/FDL-3 Tail Auto.step -------------------------------------------------------------------------------- /CAD/FDL-3 Tail Semi.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/CAD/FDL-3 Tail Semi.step -------------------------------------------------------------------------------- /ESC/BLHeli_32/FDL-3 LDO Crux.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/ESC/BLHeli_32/FDL-3 LDO Crux.ini -------------------------------------------------------------------------------- /ESC/BLHeli_32/FDL_BLHeli32_Wholetone_Damping.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/ESC/BLHeli_32/FDL_BLHeli32_Wholetone_Damping.ini -------------------------------------------------------------------------------- /ESC/SimonK/afro_nfet.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/ESC/SimonK/afro_nfet.hex -------------------------------------------------------------------------------- /Firmware/FDL-3-Semi_Firmware_v1.00/FDL-3-Semi_Firmware_v1.00.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3-Semi_Firmware_v1.00/FDL-3-Semi_Firmware_v1.00.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.01preorder/FDL-3_Firmware_v1.01preorder.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.01preorder/FDL-3_Firmware_v1.01preorder.hex -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.02/FDL-3_Firmware_v1.02.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.02/FDL-3_Firmware_v1.02.hex -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.03/FDL-3_Firmware_v1.03.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.03/FDL-3_Firmware_v1.03.hex -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.03/FDL-3_Firmware_v1.03.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.03/FDL-3_Firmware_v1.03.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.04/CycleHelpers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.04/CycleHelpers.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.04/FDL-3_Firmware_v1.04.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.04/FDL-3_Firmware_v1.04.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.04/FDL-3_Firmware_v1.04.ino.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.04/FDL-3_Firmware_v1.04.ino.hex -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.04/FireCycle.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.04/FireCycle.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.04/Presets.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.04/Presets.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.04/RenderHelpers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.04/RenderHelpers.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.04/Renderer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.04/Renderer.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.05/CycleHelpers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.05/CycleHelpers.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.05/FDL-3_Firmware_v1.05.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.05/FDL-3_Firmware_v1.05.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.05/FDL-3_Firmware_v1.05.ino.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.05/FDL-3_Firmware_v1.05.ino.hex -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.05/FireCycle.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.05/FireCycle.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.05/Presets.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.05/Presets.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.05/RenderHelpers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.05/RenderHelpers.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.05/Renderer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.05/Renderer.ino -------------------------------------------------------------------------------- /Firmware/FDL-3_Firmware_v1.05/Utils.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/FDL-3_Firmware_v1.05/Utils.ino -------------------------------------------------------------------------------- /Firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/README.md -------------------------------------------------------------------------------- /Firmware/XLoader/XLoader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/XLoader/XLoader.exe -------------------------------------------------------------------------------- /Firmware/XLoader/avrdude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/XLoader/avrdude.conf -------------------------------------------------------------------------------- /Firmware/XLoader/avrdude.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/XLoader/avrdude.exe -------------------------------------------------------------------------------- /Firmware/XLoader/devices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/XLoader/devices.txt -------------------------------------------------------------------------------- /Firmware/XLoader/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/XLoader/libusb0.dll -------------------------------------------------------------------------------- /Firmware/XLoader/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/XLoader/license.txt -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/Encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/Encoder.cpp -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/Encoder.h -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/README.md -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/examples/Basic/Basic.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/examples/Basic/Basic.pde -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/examples/NoInterrupts/NoInterrupts.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/examples/NoInterrupts/NoInterrupts.pde -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/examples/SpeedTest/SpeedTest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/examples/SpeedTest/SpeedTest.pde -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/examples/TwoKnobs/TwoKnobs.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/examples/TwoKnobs/TwoKnobs.pde -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/keywords.txt -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/library.json -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/library.properties -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/utility/direct_pin_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/utility/direct_pin_read.h -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/utility/interrupt_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/utility/interrupt_config.h -------------------------------------------------------------------------------- /Firmware/libraries/Encoder/utility/interrupt_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Encoder/utility/interrupt_pins.h -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/.DS_Store -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/LICENSE.md -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/README.md -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Blink/Blink.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit1/Circuit1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit1/Circuit1.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit10/Circuit10.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit10/Circuit10.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit11/Circuit11.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit11/Circuit11.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit2/Circuit2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit2/Circuit2.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit3/Circuit3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit3/Circuit3.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit4/Circuit4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit4/Circuit4.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit5/Circuit5.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit5/Circuit5.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit6/Circuit6.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit6/Circuit6.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit7/Circuit7.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit7/Circuit7.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit8/Circuit8.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit8/Circuit8.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit9/Circuit9.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/Circuit9/Circuit9.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/LearningKit/HelloWorld/HelloWorld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/LearningKit/HelloWorld/HelloWorld.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewAnalogClock/MicroViewAnalogClock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewAnalogClock/MicroViewAnalogClock.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewCube/MicroViewCube.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewCube/MicroViewCube.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewDemo/MicroViewDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewDemo/MicroViewDemo.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewFlashingHeart/MicroViewFlashingHeart.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewFlashingHeart/MicroViewFlashingHeart.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewPong/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewPong/LICENSE -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewPong/MicroViewPong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewPong/MicroViewPong.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewSineWave/MicroViewSineWave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewSineWave/MicroViewSineWave.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewSlider/MicroViewSlider.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewSlider/MicroViewSlider.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewVSlider/MicroViewVSlider.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewVSlider/MicroViewVSlider.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewWidgetDemo/MicroViewWidgetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewWidgetDemo/MicroViewWidgetDemo.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/examples/MicroViewWidgetRedraw/MicroViewWidgetRedraw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/examples/MicroViewWidgetRedraw/MicroViewWidgetRedraw.ino -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/extras/OLED-Datasheet_SAS1-02007-A UG-6448HLBEG03 (WiseChip).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/extras/OLED-Datasheet_SAS1-02007-A UG-6448HLBEG03 (WiseChip).pdf -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/extras/README.md -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/keywords.txt -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/library.properties -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/src/.DS_Store -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/src/MicroView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/src/MicroView.cpp -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/src/MicroView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/src/MicroView.h -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/src/util/7segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/src/util/7segment.h -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/src/util/font5x7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/src/util/font5x7.h -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/src/util/font8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/src/util/font8x16.h -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/src/util/fontlargenumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/src/util/fontlargenumber.h -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/src/util/space01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/src/util/space01.h -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/src/util/space02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/src/util/space02.h -------------------------------------------------------------------------------- /Firmware/libraries/SparkFun_MicroView/src/util/space03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/SparkFun_MicroView/src/util/space03.h -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/DateStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/DateStrings.cpp -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/Readme.txt -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/Time.cpp -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/Time.h: -------------------------------------------------------------------------------- 1 | #include "TimeLib.h" 2 | -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/TimeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/TimeLib.h -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/Processing/SyncArduinoClock/SyncArduinoClock.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/Processing/SyncArduinoClock/SyncArduinoClock.pde -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/Processing/SyncArduinoClock/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/Processing/SyncArduinoClock/readme.txt -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/TimeArduinoDue/TimeArduinoDue.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/TimeArduinoDue/TimeArduinoDue.ino -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/TimeGPS/TimeGPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/TimeGPS/TimeGPS.ino -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/TimeNTP/TimeNTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/TimeNTP/TimeNTP.ino -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/TimeNTP_ESP8266WiFi/TimeNTP_ESP8266WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/TimeNTP_ESP8266WiFi/TimeNTP_ESP8266WiFi.ino -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/TimeRTC/TimeRTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/TimeRTC/TimeRTC.ino -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/TimeRTCLog/TimeRTCLog.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/TimeRTCLog/TimeRTCLog.ino -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/TimeRTCSet/TimeRTCSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/TimeRTCSet/TimeRTCSet.ino -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/TimeSerial/TimeSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/TimeSerial/TimeSerial.ino -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/TimeSerialDateStrings/TimeSerialDateStrings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/TimeSerialDateStrings/TimeSerialDateStrings.ino -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/examples/TimeTeensy3/TimeTeensy3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/examples/TimeTeensy3/TimeTeensy3.ino -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/keywords.txt -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/library.json -------------------------------------------------------------------------------- /Firmware/libraries/Time-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/Time-master/library.properties -------------------------------------------------------------------------------- /Firmware/libraries/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/Firmware/libraries/readme.txt -------------------------------------------------------------------------------- /PCB/CTL/FDL-3 CTL PCB Schematic.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/CTL/FDL-3 CTL PCB Schematic.PNG -------------------------------------------------------------------------------- /PCB/CTL/FDL-3 CTRL - v1.4.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/CTL/FDL-3 CTRL - v1.4.brd -------------------------------------------------------------------------------- /PCB/CTL/FDL-3 CTRL - v1.4.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/CTL/FDL-3 CTRL - v1.4.sch -------------------------------------------------------------------------------- /PCB/DCP/FDL-3 DCP - v1.3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/DCP/FDL-3 DCP - v1.3.brd -------------------------------------------------------------------------------- /PCB/DCP/FDL-3 DCP - v1.3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/DCP/FDL-3 DCP - v1.3.sch -------------------------------------------------------------------------------- /PCB/DCP/FDL-3 DCP PCB Schematic.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/DCP/FDL-3 DCP PCB Schematic.PNG -------------------------------------------------------------------------------- /PCB/FDL-3 Wiring Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/FDL-3 Wiring Diagram.png -------------------------------------------------------------------------------- /PCB/PWR/FDL-3 PWR - v2.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/PWR/FDL-3 PWR - v2.brd -------------------------------------------------------------------------------- /PCB/PWR/FDL-3 PWR - v2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/PWR/FDL-3 PWR - v2.sch -------------------------------------------------------------------------------- /PCB/PWR/FDL-3 PWR PCB Schematic.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/PWR/FDL-3 PWR PCB Schematic.PNG -------------------------------------------------------------------------------- /PCB/TRG/FDL-3 TRG PCB Schematic.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/TRG/FDL-3 TRG PCB Schematic.PNG -------------------------------------------------------------------------------- /PCB/TRG/FDL-3 TRG.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/TRG/FDL-3 TRG.brd -------------------------------------------------------------------------------- /PCB/TRG/FDL-3 TRG.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/PCB/TRG/FDL-3 TRG.sch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/README.md -------------------------------------------------------------------------------- /STL/Flywheels/1.6mm spacer.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Flywheels/1.6mm spacer.stl -------------------------------------------------------------------------------- /STL/Flywheels/2.0mm spacer.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Flywheels/2.0mm spacer.stl -------------------------------------------------------------------------------- /STL/Flywheels/Flywheel Crux 9mm.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Flywheels/Flywheel Crux 9mm.stl -------------------------------------------------------------------------------- /STL/Flywheels/Flywheel Crux HIR.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Flywheels/Flywheel Crux HIR.stl -------------------------------------------------------------------------------- /STL/Flywheels/Flywheel Emax RS2205S 9mm.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Flywheels/Flywheel Emax RS2205S 9mm.stl -------------------------------------------------------------------------------- /STL/Flywheels/Flywheel Lumenier MB2206 9mm.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Flywheels/Flywheel Lumenier MB2206 9mm.stl -------------------------------------------------------------------------------- /STL/Flywheels/Flywheel Lumenier RX2205 9mm.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Flywheels/Flywheel Lumenier RX2205 9mm.stl -------------------------------------------------------------------------------- /STL/Flywheels/Flywheel Lumenier RX2205 HIR.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Flywheels/Flywheel Lumenier RX2205 HIR.stl -------------------------------------------------------------------------------- /STL/Flywheels/Flywheel Vspec 2205 9mm.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Flywheels/Flywheel Vspec 2205 9mm.stl -------------------------------------------------------------------------------- /STL/Flywheels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Flywheels/README.md -------------------------------------------------------------------------------- /STL/Nose Forty/Barrel Inner L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Barrel Inner L.stl -------------------------------------------------------------------------------- /STL/Nose Forty/Barrel Inner R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Barrel Inner R.stl -------------------------------------------------------------------------------- /STL/Nose Forty/Barrel Outer L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Barrel Outer L.stl -------------------------------------------------------------------------------- /STL/Nose Forty/Barrel Outer R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Barrel Outer R.stl -------------------------------------------------------------------------------- /STL/Nose Forty/Cowl Lower.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Cowl Lower.stl -------------------------------------------------------------------------------- /STL/Nose Forty/Cowl Upper.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Cowl Upper.stl -------------------------------------------------------------------------------- /STL/Nose Forty/ESC Housing Cap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/ESC Housing Cap.stl -------------------------------------------------------------------------------- /STL/Nose Forty/ESC Housing Clamp.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/ESC Housing Clamp.stl -------------------------------------------------------------------------------- /STL/Nose Forty/ESC Housing.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/ESC Housing.stl -------------------------------------------------------------------------------- /STL/Nose Forty/Grip Fat Boi.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Grip Fat Boi.stl -------------------------------------------------------------------------------- /STL/Nose Forty/Mag Adapter.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Mag Adapter.stl -------------------------------------------------------------------------------- /STL/Nose Forty/MagRel Block.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/MagRel Block.stl -------------------------------------------------------------------------------- /STL/Nose Forty/MagRel Catch.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/MagRel Catch.stl -------------------------------------------------------------------------------- /STL/Nose Forty/MagRel Lever.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/MagRel Lever.stl -------------------------------------------------------------------------------- /STL/Nose Forty/MagRel Link Long.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/MagRel Link Long.stl -------------------------------------------------------------------------------- /STL/Nose Forty/MagRel Link Short.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/MagRel Link Short.stl -------------------------------------------------------------------------------- /STL/Nose Forty/MagRel Pivot.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/MagRel Pivot.stl -------------------------------------------------------------------------------- /STL/Nose Forty/Magwell.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Magwell.stl -------------------------------------------------------------------------------- /STL/Nose Forty/Muzzle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Muzzle.stl -------------------------------------------------------------------------------- /STL/Nose Forty/Rail Top Front.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Forty/Rail Top Front.stl -------------------------------------------------------------------------------- /STL/Nose Full/Barrel Inner L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Barrel Inner L.stl -------------------------------------------------------------------------------- /STL/Nose Full/Barrel Inner R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Barrel Inner R.stl -------------------------------------------------------------------------------- /STL/Nose Full/Barrel Outer L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Barrel Outer L.stl -------------------------------------------------------------------------------- /STL/Nose Full/Barrel Outer R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Barrel Outer R.stl -------------------------------------------------------------------------------- /STL/Nose Full/Blaster Stand.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Blaster Stand.stl -------------------------------------------------------------------------------- /STL/Nose Full/Cowl Lower.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Cowl Lower.stl -------------------------------------------------------------------------------- /STL/Nose Full/Cowl Upper.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Cowl Upper.stl -------------------------------------------------------------------------------- /STL/Nose Full/ESC Housing Cap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/ESC Housing Cap.stl -------------------------------------------------------------------------------- /STL/Nose Full/ESC Housing.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/ESC Housing.stl -------------------------------------------------------------------------------- /STL/Nose Full/Grip Hip Shooter.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Grip Hip Shooter.stl -------------------------------------------------------------------------------- /STL/Nose Full/Grip Mag Gripper.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Grip Mag Gripper.stl -------------------------------------------------------------------------------- /STL/Nose Full/MagRel Block.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/MagRel Block.stl -------------------------------------------------------------------------------- /STL/Nose Full/MagRel Catch.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/MagRel Catch.stl -------------------------------------------------------------------------------- /STL/Nose Full/MagRel Lever.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/MagRel Lever.stl -------------------------------------------------------------------------------- /STL/Nose Full/MagRel Link Long.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/MagRel Link Long.stl -------------------------------------------------------------------------------- /STL/Nose Full/MagRel Link Short.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/MagRel Link Short.stl -------------------------------------------------------------------------------- /STL/Nose Full/MagRel Pivot.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/MagRel Pivot.stl -------------------------------------------------------------------------------- /STL/Nose Full/Magwell Cap L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Magwell Cap L.stl -------------------------------------------------------------------------------- /STL/Nose Full/Magwell Cap R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Magwell Cap R.stl -------------------------------------------------------------------------------- /STL/Nose Full/Magwell Lower.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Magwell Lower.stl -------------------------------------------------------------------------------- /STL/Nose Full/Magwell Upper.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Magwell Upper.stl -------------------------------------------------------------------------------- /STL/Nose Full/Muzzle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Muzzle.stl -------------------------------------------------------------------------------- /STL/Nose Full/Rail Top Front.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Full/Rail Top Front.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Barrel Inner L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Barrel Inner L.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Barrel Inner R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Barrel Inner R.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Barrel Outer L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Barrel Outer L.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Barrel Outer R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Barrel Outer R.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Blaster Stand HIR.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Blaster Stand HIR.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Cowl Lower.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Cowl Lower.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Cowl Upper.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Cowl Upper.stl -------------------------------------------------------------------------------- /STL/Nose HIR/ESC Housing Cap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/ESC Housing Cap.stl -------------------------------------------------------------------------------- /STL/Nose HIR/ESC Housing.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/ESC Housing.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Grip Hip Shooter.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Grip Hip Shooter.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Grip Mag Gripper.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Grip Mag Gripper.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Hopup.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Hopup.stl -------------------------------------------------------------------------------- /STL/Nose HIR/MagRel Catch.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/MagRel Catch.stl -------------------------------------------------------------------------------- /STL/Nose HIR/MagRel Lever.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/MagRel Lever.stl -------------------------------------------------------------------------------- /STL/Nose HIR/MagRel_Block.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/MagRel_Block.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Magwell.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Magwell.stl -------------------------------------------------------------------------------- /STL/Nose HIR/Rail Top Front.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose HIR/Rail Top Front.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Barrel Inner L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Barrel Inner L.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Barrel Inner R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Barrel Inner R.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Barrel Outer L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Barrel Outer L.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Barrel Outer R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Barrel Outer R.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Blaster Stand.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Blaster Stand.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Cowl Lower.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Cowl Lower.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Cowl Upper.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Cowl Upper.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/ESC Housing Cap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/ESC Housing Cap.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/ESC Housing.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/ESC Housing.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Grip Hip Shooter.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Grip Hip Shooter.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Grip Mag Gripper.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Grip Mag Gripper.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/MagRel Block.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/MagRel Block.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/MagRel Catch.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/MagRel Catch.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/MagRel Lever.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/MagRel Lever.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/MagRel Link Long.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/MagRel Link Long.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/MagRel Link Short.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/MagRel Link Short.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/MagRel Pivot.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/MagRel Pivot.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Magwell.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Magwell.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Muzzle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Muzzle.stl -------------------------------------------------------------------------------- /STL/Nose Shorty/Rail Top Front.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Nose Shorty/Rail Top Front.stl -------------------------------------------------------------------------------- /STL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/README.md -------------------------------------------------------------------------------- /STL/Robo Stock/Arm Core.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Robo Stock/Arm Core.stl -------------------------------------------------------------------------------- /STL/Robo Stock/Arm Insert.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Robo Stock/Arm Insert.stl -------------------------------------------------------------------------------- /STL/Robo Stock/Arm Panel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Robo Stock/Arm Panel.stl -------------------------------------------------------------------------------- /STL/Robo Stock/Butt Base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Robo Stock/Butt Base.stl -------------------------------------------------------------------------------- /STL/Robo Stock/Butt Main.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Robo Stock/Butt Main.stl -------------------------------------------------------------------------------- /STL/Robo Stock/Stock Base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Robo Stock/Stock Base.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Cap Mid NoNut.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Cap Mid NoNut.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Cap Mid.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Cap Mid.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Cap Rear.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Cap Rear.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Handle Core .stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Handle Core .stl -------------------------------------------------------------------------------- /STL/Tail Auto/Handle Guard.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Handle Guard.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Handle Scale L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Handle Scale L.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Handle Scale R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Handle Scale R.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Knob.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Knob.stl -------------------------------------------------------------------------------- /STL/Tail Auto/PCB Mount.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/PCB Mount.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Paddle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Paddle.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Pusher Housing Cap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Pusher Housing Cap.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Pusher Housing Main.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Pusher Housing Main.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Pusher.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Pusher.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Rail Top Rear.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Rail Top Rear.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Side Panel L Holdster.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Side Panel L Holdster.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Side Panel L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Side Panel L.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Side Panel R Holdster.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Side Panel R Holdster.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Side Panel R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Side Panel R.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Sling Point.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Sling Point.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Spinner Bushing.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Spinner Bushing.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Spinner.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Spinner.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Stock Att.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Stock Att.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Trigger.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Trigger.stl -------------------------------------------------------------------------------- /STL/Tail Auto/Underbelly.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Auto/Underbelly.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Cap Mid NoNut.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Cap Mid NoNut.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Cap Mid.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Cap Mid.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Cap Rear.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Cap Rear.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Gear Plate L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Gear Plate L.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Gear Plate R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Gear Plate R.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Gear_Drive.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Gear_Drive.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Gear_Little.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Gear_Little.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Gear_Split.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Gear_Split.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Handle Core.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Handle Core.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Handle Guard.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Handle Guard.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Handle Scale L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Handle Scale L.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Handle Scale R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Handle Scale R.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Paddle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Paddle.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Pusher Guide Base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Pusher Guide Base.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Pusher Guide Tower.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Pusher Guide Tower.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Pusher.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Pusher.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Rail Top Rear.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Rail Top Rear.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Rev Trigger.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Rev Trigger.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Side Panel L Hold.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Side Panel L Hold.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Side Panel L.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Side Panel L.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Side Panel R Hold.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Side Panel R Hold.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Side Panel R.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Side Panel R.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Stock Att.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Stock Att.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Trigger.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Trigger.stl -------------------------------------------------------------------------------- /STL/Tail Semi/Underbelly.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectfdl/FDL-3-Blaster/HEAD/STL/Tail Semi/Underbelly.stl --------------------------------------------------------------------------------