├── .gitignore ├── LICENSE ├── README.md ├── doc ├── photo1.jpg ├── photo2.jpg └── sch.pdf └── eagle ├── CAMOutputs ├── Assembly │ ├── PnP_gs_back.txt │ ├── PnP_gs_front.txt │ └── gs.txt ├── DrillFiles │ └── drill_1_16.xln └── GerberFiles │ ├── copper_bottom.gbr │ ├── copper_top.gbr │ ├── gerber_job.gbrjob │ ├── profile.gbr │ ├── silkscreen_bottom.gbr │ ├── silkscreen_top.gbr │ ├── soldermask_bottom.gbr │ ├── soldermask_top.gbr │ ├── solderpaste_bottom.gbr │ └── solderpaste_top.gbr ├── eagle.epf ├── gs.brd └── gs.sch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/README.md -------------------------------------------------------------------------------- /doc/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/doc/photo1.jpg -------------------------------------------------------------------------------- /doc/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/doc/photo2.jpg -------------------------------------------------------------------------------- /doc/sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/doc/sch.pdf -------------------------------------------------------------------------------- /eagle/CAMOutputs/Assembly/PnP_gs_back.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/Assembly/PnP_gs_back.txt -------------------------------------------------------------------------------- /eagle/CAMOutputs/Assembly/PnP_gs_front.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/Assembly/PnP_gs_front.txt -------------------------------------------------------------------------------- /eagle/CAMOutputs/Assembly/gs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/Assembly/gs.txt -------------------------------------------------------------------------------- /eagle/CAMOutputs/DrillFiles/drill_1_16.xln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/DrillFiles/drill_1_16.xln -------------------------------------------------------------------------------- /eagle/CAMOutputs/GerberFiles/copper_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/GerberFiles/copper_bottom.gbr -------------------------------------------------------------------------------- /eagle/CAMOutputs/GerberFiles/copper_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/GerberFiles/copper_top.gbr -------------------------------------------------------------------------------- /eagle/CAMOutputs/GerberFiles/gerber_job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/GerberFiles/gerber_job.gbrjob -------------------------------------------------------------------------------- /eagle/CAMOutputs/GerberFiles/profile.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/GerberFiles/profile.gbr -------------------------------------------------------------------------------- /eagle/CAMOutputs/GerberFiles/silkscreen_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/GerberFiles/silkscreen_bottom.gbr -------------------------------------------------------------------------------- /eagle/CAMOutputs/GerberFiles/silkscreen_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/GerberFiles/silkscreen_top.gbr -------------------------------------------------------------------------------- /eagle/CAMOutputs/GerberFiles/soldermask_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/GerberFiles/soldermask_bottom.gbr -------------------------------------------------------------------------------- /eagle/CAMOutputs/GerberFiles/soldermask_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/GerberFiles/soldermask_top.gbr -------------------------------------------------------------------------------- /eagle/CAMOutputs/GerberFiles/solderpaste_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/GerberFiles/solderpaste_bottom.gbr -------------------------------------------------------------------------------- /eagle/CAMOutputs/GerberFiles/solderpaste_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/CAMOutputs/GerberFiles/solderpaste_top.gbr -------------------------------------------------------------------------------- /eagle/eagle.epf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/eagle.epf -------------------------------------------------------------------------------- /eagle/gs.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/gs.brd -------------------------------------------------------------------------------- /eagle/gs.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgromes/ESP32-1W-GroundStation/HEAD/eagle/gs.sch --------------------------------------------------------------------------------