├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── hardware ├── BOM.md ├── gerbers │ ├── v1.0_ESC_Gerber.zip │ ├── v1.0_KiCad _File.zip │ ├── v1.1_ESC_Gerber.zip │ └── v1.1_KiCad _File.zip ├── images │ ├── v1.0_openESC_3D.png │ ├── v1.0_pcb_layout.png │ ├── v1.1_pcb_layout.jpg │ └── v1.1_pcb_layout.png ├── schematic_diagram_v1.0.pdf └── schematic_diagram_v1.1.pdf ├── image ├── OpenESC.png └── OpenESC.webp └── src └── open_loop_esc └── open_loop_esc.ino /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/SECURITY.md -------------------------------------------------------------------------------- /hardware/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/BOM.md -------------------------------------------------------------------------------- /hardware/gerbers/v1.0_ESC_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/gerbers/v1.0_ESC_Gerber.zip -------------------------------------------------------------------------------- /hardware/gerbers/v1.0_KiCad _File.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/gerbers/v1.0_KiCad _File.zip -------------------------------------------------------------------------------- /hardware/gerbers/v1.1_ESC_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/gerbers/v1.1_ESC_Gerber.zip -------------------------------------------------------------------------------- /hardware/gerbers/v1.1_KiCad _File.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/gerbers/v1.1_KiCad _File.zip -------------------------------------------------------------------------------- /hardware/images/v1.0_openESC_3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/images/v1.0_openESC_3D.png -------------------------------------------------------------------------------- /hardware/images/v1.0_pcb_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/images/v1.0_pcb_layout.png -------------------------------------------------------------------------------- /hardware/images/v1.1_pcb_layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/images/v1.1_pcb_layout.jpg -------------------------------------------------------------------------------- /hardware/images/v1.1_pcb_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/images/v1.1_pcb_layout.png -------------------------------------------------------------------------------- /hardware/schematic_diagram_v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/schematic_diagram_v1.0.pdf -------------------------------------------------------------------------------- /hardware/schematic_diagram_v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/hardware/schematic_diagram_v1.1.pdf -------------------------------------------------------------------------------- /image/OpenESC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/image/OpenESC.png -------------------------------------------------------------------------------- /image/OpenESC.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/image/OpenESC.webp -------------------------------------------------------------------------------- /src/open_loop_esc/open_loop_esc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidharthmohannair/OpenESC/HEAD/src/open_loop_esc/open_loop_esc.ino --------------------------------------------------------------------------------