├── .gitignore ├── Border.kicad_wks ├── Charge_Controller-cache.lib ├── Charge_Controller.kicad_pcb ├── Charge_Controller.kicad_prl ├── Charge_Controller.kicad_pro ├── Charge_Controller.kicad_sch ├── Charge_Controller.sch ├── Docs ├── AN-9005.pdf ├── Notes.txt ├── converter_pcb_layout_appli-e.pdf └── snva183b.pdf ├── Lib ├── 100x41x8mm_Heat_Sink.step ├── 3522-2.stp ├── 7443783533650_inductor.kicad_sym ├── 7443783533650_inductor.pretty │ ├── 7443783533650.kicad_mod │ └── 7443783533650.stp ├── Fuse_Holder.pretty │ ├── 25A_blade_ATOF_Fuse.kicad_mod │ ├── 3D_model_0287000_PXS-PXCN_ATO-ATOF.stp │ └── Fuse_Blade_C2935871.kicad_mod ├── LCD.pretty │ ├── LCD_80x36.step │ └── LCD_LCM-S01602DTR_A.kicad_mod └── Phoenix_10.16_terminal_1709681.pretty │ ├── Phoenix_10.16_terminal_1709681.kicad_mod │ ├── pxc_1709681_04_MKDS-10-HV-2-ZB-10-16_3D.stp │ └── pxc_1714971_04_MKDS-5-2-9-5_3D.stp ├── README.md ├── Simulations ├── MOS_Heat_LTSpice │ ├── CSD17510Q5A.spice.mod │ ├── Charge_Controller_Heat_pulses.xlsx │ ├── HeatSim_Q2_0.31W_at_19Vin_with_2.5A_12V_Out_Batter_Charger.png │ ├── HeatSim_Q2_1.16W_at_24Vin_with_7A_14V_Out_Batter_Charger.png │ ├── HeatSim_Q2_4.53W_at_31Vin_with_19A_18V_Out_Batter_Charger.png │ ├── HeatSim_Q2_4.65kW_at_48Vin_with_36A_26V_Out_Batter_Charger.png │ ├── HeatSim_Q2_4.78W_at_24Vin_with_27A_13.35V_Out_Batter_Charger.png │ ├── HeatSim_Q2_Transients_at_30Vin_with_2.944mS_600Wpeak.png │ ├── HeatSim_Q3_2.07W_at_24Vin_with_27A_13.35V_Out_Batter_Charger.png │ ├── Heat_Sim_High_Side_Watts.png │ ├── Heat_Sim_High_Side_Zoomed.png │ ├── Heat_Sim_Low_Side_Watts.png │ ├── High_Side_2.65W_at_12A_Out.png │ ├── Low_Side_1.08W_at_12A_Out.png │ ├── MOSFET_Heat_Sim_PWL.asc │ ├── MOSFET_Heat_Sim_PWL.net │ ├── MOSFET_Heat_Sim_PWL_CSD17510Q5A.asc │ ├── MOSFET_Heat_Sim_PWL_CSD17510Q5A_2.asc │ ├── MOSFET_Heat_Sim_PWL_IPB027N10N3.asc │ ├── MOSFET_Heat_Sim_Pulse.asc │ ├── MOSFET_Heat_Sim_Pulse.png │ ├── MOSFET_Heat_Sim_Pulse2.png │ ├── MOSFET_Heat_Sim_Pulse3.png │ ├── MOSFET_Heat_Sim_Pulse4.png │ ├── MOSFET_Heat_Sim_Pulse_CSD17510Q5A.asc │ ├── MOSFET_Heat_Sim_Pulse_CSD17510Q5A.net │ ├── MOSFET_Heat_Sim_Pulse_IRFH5207_as_NCE8295AK.asc │ ├── MOSFET_Heat_Sim_Pulse_IRFH5207_as_NCE8295AK.net │ ├── UHi_PWL.txt │ └── Ulow_PWL.txt └── PCB_Toolkit_V8.21_2.5CperW.png ├── export └── V0.1 │ ├── Buttons.step │ ├── Charge_Controller.png │ ├── Charge_Controller.step │ ├── Charge_Controller_Drawing.pdf │ ├── Charge_Controller_Full-BOM.csv │ ├── Charge_Controller_In_Case.png │ ├── Charge_Controller_SCH.pdf │ ├── DigiKey │ └── Charge_Controller_full - Charge_Controller_BOM.csv │ ├── Hardware │ └── Charge_Controller_McMasterCarr_BOM.csv │ ├── JLCPCB │ ├── Charge_Controller-top-pos_JLC-CPL.csv │ ├── Charge_Controller_JLC-BOM.csv │ └── JLCPCB.zip │ ├── OnShapeASM.step │ ├── Raw │ ├── Charge_Controller-bottom-pos.csv │ ├── Charge_Controller-top-pos.csv │ └── Charge_Controller_BOM.csv │ ├── case_bottom.step │ └── case_top.step ├── fp-info-cache ├── fp-lib-table └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/.gitignore -------------------------------------------------------------------------------- /Border.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Border.kicad_wks -------------------------------------------------------------------------------- /Charge_Controller-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Charge_Controller-cache.lib -------------------------------------------------------------------------------- /Charge_Controller.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Charge_Controller.kicad_pcb -------------------------------------------------------------------------------- /Charge_Controller.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Charge_Controller.kicad_prl -------------------------------------------------------------------------------- /Charge_Controller.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Charge_Controller.kicad_pro -------------------------------------------------------------------------------- /Charge_Controller.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Charge_Controller.kicad_sch -------------------------------------------------------------------------------- /Charge_Controller.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Charge_Controller.sch -------------------------------------------------------------------------------- /Docs/AN-9005.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Docs/AN-9005.pdf -------------------------------------------------------------------------------- /Docs/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Docs/Notes.txt -------------------------------------------------------------------------------- /Docs/converter_pcb_layout_appli-e.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Docs/converter_pcb_layout_appli-e.pdf -------------------------------------------------------------------------------- /Docs/snva183b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Docs/snva183b.pdf -------------------------------------------------------------------------------- /Lib/100x41x8mm_Heat_Sink.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/100x41x8mm_Heat_Sink.step -------------------------------------------------------------------------------- /Lib/3522-2.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/3522-2.stp -------------------------------------------------------------------------------- /Lib/7443783533650_inductor.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/7443783533650_inductor.kicad_sym -------------------------------------------------------------------------------- /Lib/7443783533650_inductor.pretty/7443783533650.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/7443783533650_inductor.pretty/7443783533650.kicad_mod -------------------------------------------------------------------------------- /Lib/7443783533650_inductor.pretty/7443783533650.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/7443783533650_inductor.pretty/7443783533650.stp -------------------------------------------------------------------------------- /Lib/Fuse_Holder.pretty/25A_blade_ATOF_Fuse.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/Fuse_Holder.pretty/25A_blade_ATOF_Fuse.kicad_mod -------------------------------------------------------------------------------- /Lib/Fuse_Holder.pretty/3D_model_0287000_PXS-PXCN_ATO-ATOF.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/Fuse_Holder.pretty/3D_model_0287000_PXS-PXCN_ATO-ATOF.stp -------------------------------------------------------------------------------- /Lib/Fuse_Holder.pretty/Fuse_Blade_C2935871.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/Fuse_Holder.pretty/Fuse_Blade_C2935871.kicad_mod -------------------------------------------------------------------------------- /Lib/LCD.pretty/LCD_80x36.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/LCD.pretty/LCD_80x36.step -------------------------------------------------------------------------------- /Lib/LCD.pretty/LCD_LCM-S01602DTR_A.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/LCD.pretty/LCD_LCM-S01602DTR_A.kicad_mod -------------------------------------------------------------------------------- /Lib/Phoenix_10.16_terminal_1709681.pretty/Phoenix_10.16_terminal_1709681.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/Phoenix_10.16_terminal_1709681.pretty/Phoenix_10.16_terminal_1709681.kicad_mod -------------------------------------------------------------------------------- /Lib/Phoenix_10.16_terminal_1709681.pretty/pxc_1709681_04_MKDS-10-HV-2-ZB-10-16_3D.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/Phoenix_10.16_terminal_1709681.pretty/pxc_1709681_04_MKDS-10-HV-2-ZB-10-16_3D.stp -------------------------------------------------------------------------------- /Lib/Phoenix_10.16_terminal_1709681.pretty/pxc_1714971_04_MKDS-5-2-9-5_3D.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Lib/Phoenix_10.16_terminal_1709681.pretty/pxc_1714971_04_MKDS-5-2-9-5_3D.stp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/README.md -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/CSD17510Q5A.spice.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/CSD17510Q5A.spice.mod -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/Charge_Controller_Heat_pulses.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/Charge_Controller_Heat_pulses.xlsx -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/HeatSim_Q2_0.31W_at_19Vin_with_2.5A_12V_Out_Batter_Charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/HeatSim_Q2_0.31W_at_19Vin_with_2.5A_12V_Out_Batter_Charger.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/HeatSim_Q2_1.16W_at_24Vin_with_7A_14V_Out_Batter_Charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/HeatSim_Q2_1.16W_at_24Vin_with_7A_14V_Out_Batter_Charger.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/HeatSim_Q2_4.53W_at_31Vin_with_19A_18V_Out_Batter_Charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/HeatSim_Q2_4.53W_at_31Vin_with_19A_18V_Out_Batter_Charger.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/HeatSim_Q2_4.65kW_at_48Vin_with_36A_26V_Out_Batter_Charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/HeatSim_Q2_4.65kW_at_48Vin_with_36A_26V_Out_Batter_Charger.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/HeatSim_Q2_4.78W_at_24Vin_with_27A_13.35V_Out_Batter_Charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/HeatSim_Q2_4.78W_at_24Vin_with_27A_13.35V_Out_Batter_Charger.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/HeatSim_Q2_Transients_at_30Vin_with_2.944mS_600Wpeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/HeatSim_Q2_Transients_at_30Vin_with_2.944mS_600Wpeak.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/HeatSim_Q3_2.07W_at_24Vin_with_27A_13.35V_Out_Batter_Charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/HeatSim_Q3_2.07W_at_24Vin_with_27A_13.35V_Out_Batter_Charger.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/Heat_Sim_High_Side_Watts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/Heat_Sim_High_Side_Watts.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/Heat_Sim_High_Side_Zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/Heat_Sim_High_Side_Zoomed.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/Heat_Sim_Low_Side_Watts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/Heat_Sim_Low_Side_Watts.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/High_Side_2.65W_at_12A_Out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/High_Side_2.65W_at_12A_Out.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/Low_Side_1.08W_at_12A_Out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/Low_Side_1.08W_at_12A_Out.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_PWL.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_PWL.asc -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_PWL.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_PWL.net -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_PWL_CSD17510Q5A.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_PWL_CSD17510Q5A.asc -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_PWL_CSD17510Q5A_2.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_PWL_CSD17510Q5A_2.asc -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_PWL_IPB027N10N3.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_PWL_IPB027N10N3.asc -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse.asc -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse2.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse3.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse4.png -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse_CSD17510Q5A.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse_CSD17510Q5A.asc -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse_CSD17510Q5A.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse_CSD17510Q5A.net -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse_IRFH5207_as_NCE8295AK.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse_IRFH5207_as_NCE8295AK.asc -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse_IRFH5207_as_NCE8295AK.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/MOSFET_Heat_Sim_Pulse_IRFH5207_as_NCE8295AK.net -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/UHi_PWL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/UHi_PWL.txt -------------------------------------------------------------------------------- /Simulations/MOS_Heat_LTSpice/Ulow_PWL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/MOS_Heat_LTSpice/Ulow_PWL.txt -------------------------------------------------------------------------------- /Simulations/PCB_Toolkit_V8.21_2.5CperW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/Simulations/PCB_Toolkit_V8.21_2.5CperW.png -------------------------------------------------------------------------------- /export/V0.1/Buttons.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Buttons.step -------------------------------------------------------------------------------- /export/V0.1/Charge_Controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Charge_Controller.png -------------------------------------------------------------------------------- /export/V0.1/Charge_Controller.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Charge_Controller.step -------------------------------------------------------------------------------- /export/V0.1/Charge_Controller_Drawing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Charge_Controller_Drawing.pdf -------------------------------------------------------------------------------- /export/V0.1/Charge_Controller_Full-BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Charge_Controller_Full-BOM.csv -------------------------------------------------------------------------------- /export/V0.1/Charge_Controller_In_Case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Charge_Controller_In_Case.png -------------------------------------------------------------------------------- /export/V0.1/Charge_Controller_SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Charge_Controller_SCH.pdf -------------------------------------------------------------------------------- /export/V0.1/DigiKey/Charge_Controller_full - Charge_Controller_BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/DigiKey/Charge_Controller_full - Charge_Controller_BOM.csv -------------------------------------------------------------------------------- /export/V0.1/Hardware/Charge_Controller_McMasterCarr_BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Hardware/Charge_Controller_McMasterCarr_BOM.csv -------------------------------------------------------------------------------- /export/V0.1/JLCPCB/Charge_Controller-top-pos_JLC-CPL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/JLCPCB/Charge_Controller-top-pos_JLC-CPL.csv -------------------------------------------------------------------------------- /export/V0.1/JLCPCB/Charge_Controller_JLC-BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/JLCPCB/Charge_Controller_JLC-BOM.csv -------------------------------------------------------------------------------- /export/V0.1/JLCPCB/JLCPCB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/JLCPCB/JLCPCB.zip -------------------------------------------------------------------------------- /export/V0.1/OnShapeASM.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/OnShapeASM.step -------------------------------------------------------------------------------- /export/V0.1/Raw/Charge_Controller-bottom-pos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Raw/Charge_Controller-bottom-pos.csv -------------------------------------------------------------------------------- /export/V0.1/Raw/Charge_Controller-top-pos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Raw/Charge_Controller-top-pos.csv -------------------------------------------------------------------------------- /export/V0.1/Raw/Charge_Controller_BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/Raw/Charge_Controller_BOM.csv -------------------------------------------------------------------------------- /export/V0.1/case_bottom.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/case_bottom.step -------------------------------------------------------------------------------- /export/V0.1/case_top.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/export/V0.1/case_top.step -------------------------------------------------------------------------------- /fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/fp-info-cache -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/fp-lib-table -------------------------------------------------------------------------------- /sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharvey/Charge_Controller/HEAD/sym-lib-table --------------------------------------------------------------------------------