├── .DS_Store ├── .github └── FUNDING.yml ├── 1.5bottom.jpg ├── 1.5complete.jpg ├── 1.5top.jpg ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── Antriebaufteilung Stapler.jpg ├── Eagle_PCB ├── .DS_Store ├── High-Power-Version │ ├── Micro RC Receiver HP.brd │ ├── Micro RC Receiver HP.pdf │ ├── Micro RC Receiver HP.sch │ └── eagle.epf ├── MPU-6050_Shield │ ├── .DS_Store │ ├── MPU-6050 Shield.brd │ ├── MPU-6050 Shield.pdf │ ├── MPU-6050 Shield.sch │ └── eagle.epf ├── Nano-SBUS-Version │ ├── .DS_Store │ ├── Gerbers │ │ ├── .DS_Store │ │ ├── Assembly │ │ │ ├── .DS_Store │ │ │ ├── BOM.xlsx │ │ │ ├── CPL.xlsx │ │ │ ├── Nano RC Receiver.csv │ │ │ ├── PnP_Nano RC Receiver_back.csv │ │ │ └── PnP_Nano RC Receiver_front.csv │ │ ├── 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 │ ├── Nano RC Receiver.brd │ ├── Nano RC Receiver.sch │ └── eagle.epf └── Standard-Version │ ├── BOM.pdf │ ├── Gerbers_V1.5.zip │ ├── Micro RC Receiver.brd │ ├── Micro RC Receiver.pdf │ ├── Micro RC Receiver.sch │ └── eagle.epf ├── Housing ├── Bottom Housing.stl ├── Label.xlsx ├── Pin Header Cover 2x.stl ├── Pin Header Cover 3x.stl ├── Pin Header Cover 4x.stl ├── Top Housing Dual DC Motors.stl ├── Top Housing High Power.stl ├── Top Housing No DC Motor.stl └── with clips │ ├── Receiver Top Clip Dual Motors.stl │ ├── Receiver Top Clip No Motor.stl │ ├── Receiver Top Clip Single Motor.stl │ └── Receiver_Bottom_Clip.stl ├── LICENSE.txt ├── MPU-6050_Shield.png ├── Micro_RC_Receiver.ino ├── Micro_RC_Receiver.png ├── Micro_RC_Receiver_Forklift ├── .DS_Store ├── Micro_RC_Receiver_Forklift.ino ├── README.md ├── forklift steering angle.xlsx ├── helper.h ├── light.md ├── pgmRead64.h ├── readVCC.h ├── steeringCurves.h ├── vehicleConfig.h └── ~$forklift steering angle.xlsx ├── Micro_RC_Receiver_Light ├── LICENSE.txt ├── Micro_RC_Receiver_Light.ino ├── README.md ├── helper.h ├── memory usage.png ├── readVCC.h └── vehicleConfig.h ├── README.md ├── balancing.h ├── helper.h ├── light.md ├── pgmRead64.h ├── readVCC.h ├── steeringCurves.h ├── tone.h └── vehicleConfig.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /1.5bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/1.5bottom.jpg -------------------------------------------------------------------------------- /1.5complete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/1.5complete.jpg -------------------------------------------------------------------------------- /1.5top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/1.5top.jpg -------------------------------------------------------------------------------- /1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/1.jpg -------------------------------------------------------------------------------- /2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/2.jpg -------------------------------------------------------------------------------- /3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/3.jpg -------------------------------------------------------------------------------- /Antriebaufteilung Stapler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Antriebaufteilung Stapler.jpg -------------------------------------------------------------------------------- /Eagle_PCB/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/.DS_Store -------------------------------------------------------------------------------- /Eagle_PCB/High-Power-Version/Micro RC Receiver HP.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/High-Power-Version/Micro RC Receiver HP.brd -------------------------------------------------------------------------------- /Eagle_PCB/High-Power-Version/Micro RC Receiver HP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/High-Power-Version/Micro RC Receiver HP.pdf -------------------------------------------------------------------------------- /Eagle_PCB/High-Power-Version/Micro RC Receiver HP.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/High-Power-Version/Micro RC Receiver HP.sch -------------------------------------------------------------------------------- /Eagle_PCB/High-Power-Version/eagle.epf: -------------------------------------------------------------------------------- 1 | [Eagle] 2 | Version="07 05 00" -------------------------------------------------------------------------------- /Eagle_PCB/MPU-6050_Shield/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/MPU-6050_Shield/.DS_Store -------------------------------------------------------------------------------- /Eagle_PCB/MPU-6050_Shield/MPU-6050 Shield.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/MPU-6050_Shield/MPU-6050 Shield.brd -------------------------------------------------------------------------------- /Eagle_PCB/MPU-6050_Shield/MPU-6050 Shield.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/MPU-6050_Shield/MPU-6050 Shield.pdf -------------------------------------------------------------------------------- /Eagle_PCB/MPU-6050_Shield/MPU-6050 Shield.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/MPU-6050_Shield/MPU-6050 Shield.sch -------------------------------------------------------------------------------- /Eagle_PCB/MPU-6050_Shield/eagle.epf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/MPU-6050_Shield/eagle.epf -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/.DS_Store -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/.DS_Store -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/.DS_Store -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/BOM.xlsx -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/CPL.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/CPL.xlsx -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/Nano RC Receiver.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/Nano RC Receiver.csv -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/PnP_Nano RC Receiver_back.csv: -------------------------------------------------------------------------------- 1 | IC1, 17.73, 6.91, 270.00, , NRF24L01_SMD_PAD 2 | -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/PnP_Nano RC Receiver_front.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/Assembly/PnP_Nano RC Receiver_front.csv -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/DrillFiles/drill_1_16.xln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/DrillFiles/drill_1_16.xln -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/copper_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/copper_bottom.gbr -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/copper_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/copper_top.gbr -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/gerber_job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/gerber_job.gbrjob -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/profile.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/profile.gbr -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/silkscreen_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/silkscreen_bottom.gbr -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/silkscreen_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/silkscreen_top.gbr -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/soldermask_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/soldermask_bottom.gbr -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/soldermask_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/soldermask_top.gbr -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/solderpaste_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/solderpaste_bottom.gbr -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/solderpaste_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Gerbers/GerberFiles/solderpaste_top.gbr -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Nano RC Receiver.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Nano RC Receiver.brd -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/Nano RC Receiver.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Nano-SBUS-Version/Nano RC Receiver.sch -------------------------------------------------------------------------------- /Eagle_PCB/Nano-SBUS-Version/eagle.epf: -------------------------------------------------------------------------------- 1 | [Eagle] 2 | Version="07 05 00" -------------------------------------------------------------------------------- /Eagle_PCB/Standard-Version/BOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Standard-Version/BOM.pdf -------------------------------------------------------------------------------- /Eagle_PCB/Standard-Version/Gerbers_V1.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Standard-Version/Gerbers_V1.5.zip -------------------------------------------------------------------------------- /Eagle_PCB/Standard-Version/Micro RC Receiver.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Standard-Version/Micro RC Receiver.brd -------------------------------------------------------------------------------- /Eagle_PCB/Standard-Version/Micro RC Receiver.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Standard-Version/Micro RC Receiver.pdf -------------------------------------------------------------------------------- /Eagle_PCB/Standard-Version/Micro RC Receiver.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Eagle_PCB/Standard-Version/Micro RC Receiver.sch -------------------------------------------------------------------------------- /Eagle_PCB/Standard-Version/eagle.epf: -------------------------------------------------------------------------------- 1 | [Eagle] 2 | Version="07 05 00" -------------------------------------------------------------------------------- /Housing/Bottom Housing.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/Bottom Housing.stl -------------------------------------------------------------------------------- /Housing/Label.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/Label.xlsx -------------------------------------------------------------------------------- /Housing/Pin Header Cover 2x.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/Pin Header Cover 2x.stl -------------------------------------------------------------------------------- /Housing/Pin Header Cover 3x.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/Pin Header Cover 3x.stl -------------------------------------------------------------------------------- /Housing/Pin Header Cover 4x.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/Pin Header Cover 4x.stl -------------------------------------------------------------------------------- /Housing/Top Housing Dual DC Motors.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/Top Housing Dual DC Motors.stl -------------------------------------------------------------------------------- /Housing/Top Housing High Power.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/Top Housing High Power.stl -------------------------------------------------------------------------------- /Housing/Top Housing No DC Motor.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/Top Housing No DC Motor.stl -------------------------------------------------------------------------------- /Housing/with clips/Receiver Top Clip Dual Motors.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/with clips/Receiver Top Clip Dual Motors.stl -------------------------------------------------------------------------------- /Housing/with clips/Receiver Top Clip No Motor.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/with clips/Receiver Top Clip No Motor.stl -------------------------------------------------------------------------------- /Housing/with clips/Receiver Top Clip Single Motor.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/with clips/Receiver Top Clip Single Motor.stl -------------------------------------------------------------------------------- /Housing/with clips/Receiver_Bottom_Clip.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Housing/with clips/Receiver_Bottom_Clip.stl -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MPU-6050_Shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/MPU-6050_Shield.png -------------------------------------------------------------------------------- /Micro_RC_Receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver.ino -------------------------------------------------------------------------------- /Micro_RC_Receiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver.png -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/.DS_Store -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/Micro_RC_Receiver_Forklift.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/Micro_RC_Receiver_Forklift.ino -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/README.md -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/forklift steering angle.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/forklift steering angle.xlsx -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/helper.h -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/light.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/light.md -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/pgmRead64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/pgmRead64.h -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/readVCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/readVCC.h -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/steeringCurves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/steeringCurves.h -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/vehicleConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/vehicleConfig.h -------------------------------------------------------------------------------- /Micro_RC_Receiver_Forklift/~$forklift steering angle.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Forklift/~$forklift steering angle.xlsx -------------------------------------------------------------------------------- /Micro_RC_Receiver_Light/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Light/LICENSE.txt -------------------------------------------------------------------------------- /Micro_RC_Receiver_Light/Micro_RC_Receiver_Light.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Light/Micro_RC_Receiver_Light.ino -------------------------------------------------------------------------------- /Micro_RC_Receiver_Light/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Light/README.md -------------------------------------------------------------------------------- /Micro_RC_Receiver_Light/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Light/helper.h -------------------------------------------------------------------------------- /Micro_RC_Receiver_Light/memory usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Light/memory usage.png -------------------------------------------------------------------------------- /Micro_RC_Receiver_Light/readVCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Light/readVCC.h -------------------------------------------------------------------------------- /Micro_RC_Receiver_Light/vehicleConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/Micro_RC_Receiver_Light/vehicleConfig.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/README.md -------------------------------------------------------------------------------- /balancing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/balancing.h -------------------------------------------------------------------------------- /helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/helper.h -------------------------------------------------------------------------------- /light.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/light.md -------------------------------------------------------------------------------- /pgmRead64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/pgmRead64.h -------------------------------------------------------------------------------- /readVCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/readVCC.h -------------------------------------------------------------------------------- /steeringCurves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/steeringCurves.h -------------------------------------------------------------------------------- /tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/tone.h -------------------------------------------------------------------------------- /vehicleConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDIYGuy999/Micro_RC_Receiver/HEAD/vehicleConfig.h --------------------------------------------------------------------------------