├── .gitignore ├── LICENSE ├── README.md ├── circuits ├── OSSI_CM1 │ ├── .gitignore │ ├── DIP_socket.kicad_sym │ ├── OSSI_CM1.kicad_dru │ ├── OSSI_CM1.kicad_pcb │ ├── OSSI_CM1.kicad_prl │ ├── OSSI_CM1.kicad_pro │ ├── OSSI_CM1.kicad_sch │ ├── OSSI_CM1.pretty │ │ └── OSSI_CM1.kicad_mod │ ├── bom │ │ └── OSSI_CM1-ibom.html │ ├── fabrication │ │ ├── OSSI_CM1-B_Cu.gbr │ │ ├── OSSI_CM1-B_Mask.gbr │ │ ├── OSSI_CM1-B_Paste.gbr │ │ ├── OSSI_CM1-B_Silkscreen.gbr │ │ ├── OSSI_CM1-Edge_Cuts.gbr │ │ ├── OSSI_CM1-F_Cu.gbr │ │ ├── OSSI_CM1-F_Mask.gbr │ │ ├── OSSI_CM1-F_Paste.gbr │ │ ├── OSSI_CM1-F_Silkscreen.gbr │ │ ├── OSSI_CM1-In1_Cu.gbr │ │ ├── OSSI_CM1-In2_Cu.gbr │ │ ├── OSSI_CM1-NPTH-drl_map.dxf │ │ ├── OSSI_CM1-NPTH.drl │ │ ├── OSSI_CM1-PTH-drl_map.dxf │ │ ├── OSSI_CM1-PTH.drl │ │ ├── OSSI_CM1-job.gbrjob │ │ └── OSSI_CM1.zip │ ├── fp-lib-table │ └── sym-lib-table ├── OSSI_CM2 │ ├── .gitignore │ ├── DIP_socket.kicad_sym │ ├── OSSI_CM2.kicad_dru │ ├── OSSI_CM2.kicad_pcb │ ├── OSSI_CM2.kicad_prl │ ├── OSSI_CM2.kicad_pro │ ├── OSSI_CM2.kicad_sch │ ├── README.md │ ├── bom │ │ ├── OSSI_CM2-Pinout.pdf │ │ └── OSSI_CM2-ibom.html │ ├── fabrication │ │ ├── OSSI_CM2-B_Cu.gbr │ │ ├── OSSI_CM2-B_Mask.gbr │ │ ├── OSSI_CM2-B_Paste.gbr │ │ ├── OSSI_CM2-B_Silkscreen.gbr │ │ ├── OSSI_CM2-Edge_Cuts.gbr │ │ ├── OSSI_CM2-F_Cu.gbr │ │ ├── OSSI_CM2-F_Mask.gbr │ │ ├── OSSI_CM2-F_Paste.gbr │ │ ├── OSSI_CM2-F_Silkscreen.gbr │ │ ├── OSSI_CM2-In1_Cu.gbr │ │ ├── OSSI_CM2-In2_Cu.gbr │ │ ├── OSSI_CM2-NPTH-drl_map.dxf │ │ ├── OSSI_CM2-NPTH.drl │ │ ├── OSSI_CM2-PTH-drl_map.dxf │ │ ├── OSSI_CM2-PTH.drl │ │ ├── OSSI_CM2-job.gbrjob │ │ └── OSSI_CM2.zip │ ├── fp-lib-table │ ├── sym-lib-table │ └── test_reports │ │ ├── 1V25_modification.jpg │ │ ├── Initial Operation Test Report Template.md │ │ ├── OSSI_CM2_HW_Errata.md │ │ ├── design_calculations.ipynb │ │ └── first_blinky.elf ├── OSSI_CM2V1.1 │ ├── .gitignore │ ├── DIP_socket.kicad_sym │ ├── OSSI_CM2.kicad_dru │ ├── OSSI_CM2.kicad_pcb │ ├── OSSI_CM2.kicad_prl │ ├── OSSI_CM2.kicad_pro │ ├── OSSI_CM2.kicad_sch │ ├── OSSI_CM2.pretty │ │ └── OSSI_CM2.kicad_mod │ ├── README.md │ ├── bom │ │ └── OSSI_CM2-V1.1_Pinout.pdf │ ├── fp-lib-table │ └── sym-lib-table ├── OSSI_CM2V2.0 │ ├── .gitignore │ ├── DIP_socket.kicad_sym │ ├── OSSI_CM2.kicad_dru │ ├── OSSI_CM2.kicad_pcb │ ├── OSSI_CM2.kicad_prl │ ├── OSSI_CM2.kicad_pro │ ├── OSSI_CM2.kicad_sch │ ├── OSSI_CM2.pretty │ │ └── OSSI_CM2.kicad_mod │ ├── README.md │ ├── bom │ │ └── OSSI_CM2-V2.0_Pinout.pdf │ ├── fp-lib-table │ └── sym-lib-table ├── inverter │ ├── .gitignore │ ├── AC_current_measurement.kicad_sch │ ├── AC_current_measurement.sch │ ├── AC_filter.kicad_sch │ ├── AC_filter.sch │ ├── AC_switch.kicad_sch │ ├── AC_switch.sch │ ├── DC_booster.kicad_sch │ ├── DC_booster.sch │ ├── DC_input.kicad_sch │ ├── DC_input.sch │ ├── OSSI_MK_I-cache.lib │ ├── OSSI_MK_I.kicad_pcb │ ├── OSSI_MK_I.kicad_prl │ ├── OSSI_MK_I.kicad_pro │ ├── OSSI_MK_I.kicad_sch │ ├── OSSI_MK_I.pro │ ├── OSSI_MK_I.sch │ ├── analog_frontend.kicad_sch │ ├── analog_frontend.sch │ ├── drivers.kicad_sch │ ├── drivers.sch │ ├── fp-lib-table │ ├── highside_supply.kicad_sch │ ├── highside_supply.sch │ ├── interface.kicad_sch │ ├── inverter.kicad_sch │ ├── inverter.sch │ ├── main_controller.kicad_sch │ ├── main_controller.sch │ ├── power_supply.kicad_sch │ ├── power_supply.sch │ ├── readme.md │ └── sym-lib-table └── lib │ ├── LM5104.dcm │ ├── LM5104.kicad_sym │ ├── LM5104.lib │ ├── LM75x.dcm │ ├── LM75x.kicad_sym │ ├── LM75x.lib │ ├── M24M01-xx.kicad_sym │ ├── NCP1117LP.kicad_sym │ ├── NodeMCU.kicad_sym │ ├── OSSI_CM.pretty │ └── OSSI_CM.kicad_mod │ ├── OSSI_CM1.kicad_sym │ ├── OSSI_CM2.kicad_sym │ ├── OSSI_standard_components.dcm │ ├── OSSI_standard_components.kicad_sym │ ├── OSSI_standard_components.lib │ ├── OSSI_standard_footprints.pretty │ ├── 0603_R.kicad_mod │ ├── 0603_W_C.kicad_mod │ ├── 0603_W_LED.kicad_mod │ ├── 0603_W_R.kicad_mod │ ├── 0805_R.kicad_mod │ ├── 0805_W_C.kicad_mod │ ├── 0805_W_L.kicad_mod │ ├── 0805_W_R.kicad_mod │ ├── 1206_R.kicad_mod │ ├── 1206_W.kicad_mod │ ├── 2512_W.kicad_mod │ ├── C_pol_LS5.08mm_D10mm.kicad_mod │ ├── DIP-40_Socket_25.4mm.kicad_mod │ ├── HC49_US.kicad_mod │ ├── Hole_M3.kicad_mod │ ├── Hole_M4.kicad_mod │ ├── JUMPER_CLOSED.kicad_mod │ ├── JUMPER_OPEN.kicad_mod │ ├── LQFP-64_10x10_Pitch0.5mm.kicad_mod │ ├── MELF_0204_R.kicad_mod │ ├── MELF_0204_W.kicad_mod │ ├── MELF_0207_R.kicad_mod │ ├── MELF_0207_W.kicad_mod │ ├── MSOP8.kicad_mod │ ├── OJE-SH-112HM.kicad_mod │ ├── PDIP-8_300mil.kicad_mod │ ├── Resistor_THT_10mm.kicad_mod │ ├── SOD123_R.kicad_mod │ ├── SOD323_R.kicad_mod │ ├── SOIC8.kicad_mod │ ├── SOIC8_CurrentSensor.kicad_mod │ ├── SOT-23-5.kicad_mod │ ├── SOT-89_LDO.kicad_mod │ ├── SOT23_BEC_R.kicad_mod │ ├── SOT23_R.kicad_mod │ ├── SOT323_R.kicad_mod │ ├── STARPOINT.kicad_mod │ ├── TDK_EI25_EE25_B66208.kicad_mod │ ├── TESTPOINT_1mm_SMD.kicad_mod │ ├── TESTPOINT_1mm_THD.kicad_mod │ ├── TO-220-H.kicad_mod │ ├── TO-220-HT.kicad_mod │ ├── TO-220-V.kicad_mod │ ├── TO-252-DPAK-GSD.kicad_mod │ ├── TO-92.kicad_mod │ ├── TO-92_CBE.kicad_mod │ ├── TO-92_RAC.kicad_mod │ └── TSSOP8.kicad_mod │ ├── SN47HCS04.kicad_sym │ ├── STM32-L412.kicad_sym │ ├── STM32-L412_v2.kicad_sym │ ├── Si86xx.dcm │ ├── Si86xx.kicad_sym │ ├── Si86xx.lib │ ├── Si871x_2x.dcm │ ├── Si871x_2x.kicad_sym │ ├── Si871x_2x.lib │ ├── UC2845.dcm │ ├── UC2845.kicad_sym │ ├── UC2845.lib │ ├── UCC23313.kicad_sym │ ├── acs722.dcm │ ├── acs722.kicad_sym │ ├── acs722.lib │ ├── connectors.dcm │ ├── connectors.kicad_sym │ ├── connectors.lib │ ├── isl21070.dcm │ ├── isl21070.lib │ ├── kv30f.dcm │ ├── kv30f.kicad_sym │ ├── kv30f.lib │ ├── lm317.dcm │ ├── lm317.kicad_sym │ ├── lm317.lib │ ├── lm4030.dcm │ ├── lm4030.kicad_sym │ ├── lm4030.lib │ ├── lm431.dcm │ ├── lm431.lib │ ├── pin_headers.kicad_sym │ ├── readme.md │ ├── tl431.dcm │ └── tl431.lib └── documentation └── images ├── OSSI_use_case_battery_ac.png ├── OSSI_use_case_solar_ac.png ├── OSSI_use_case_solar_battery.png ├── OSSI_use_case_solar_dc.png ├── OSSI_use_case_wind_ac.png ├── Readme.md ├── block_diagram_OSSI_system.pdf ├── block_diagram_OSSI_system.svg └── use_cases_OSSI.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/README.md -------------------------------------------------------------------------------- /circuits/OSSI_CM1/.gitignore: -------------------------------------------------------------------------------- 1 | *-backups/ 2 | ~* 3 | -------------------------------------------------------------------------------- /circuits/OSSI_CM1/DIP_socket.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/DIP_socket.kicad_sym -------------------------------------------------------------------------------- /circuits/OSSI_CM1/OSSI_CM1.kicad_dru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/OSSI_CM1.kicad_dru -------------------------------------------------------------------------------- /circuits/OSSI_CM1/OSSI_CM1.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/OSSI_CM1.kicad_pcb -------------------------------------------------------------------------------- /circuits/OSSI_CM1/OSSI_CM1.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/OSSI_CM1.kicad_prl -------------------------------------------------------------------------------- /circuits/OSSI_CM1/OSSI_CM1.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/OSSI_CM1.kicad_pro -------------------------------------------------------------------------------- /circuits/OSSI_CM1/OSSI_CM1.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/OSSI_CM1.kicad_sch -------------------------------------------------------------------------------- /circuits/OSSI_CM1/OSSI_CM1.pretty/OSSI_CM1.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/OSSI_CM1.pretty/OSSI_CM1.kicad_mod -------------------------------------------------------------------------------- /circuits/OSSI_CM1/bom/OSSI_CM1-ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/bom/OSSI_CM1-ibom.html -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-B_Cu.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-B_Mask.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-B_Paste.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-B_Silkscreen.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-Edge_Cuts.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-F_Cu.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-F_Mask.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-F_Paste.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-F_Silkscreen.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-In1_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-In1_Cu.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-In2_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-In2_Cu.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-NPTH-drl_map.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-NPTH-drl_map.dxf -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-NPTH.drl -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-PTH-drl_map.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-PTH-drl_map.dxf -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-PTH.drl -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1-job.gbrjob -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fabrication/OSSI_CM1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fabrication/OSSI_CM1.zip -------------------------------------------------------------------------------- /circuits/OSSI_CM1/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/fp-lib-table -------------------------------------------------------------------------------- /circuits/OSSI_CM1/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM1/sym-lib-table -------------------------------------------------------------------------------- /circuits/OSSI_CM2/.gitignore: -------------------------------------------------------------------------------- 1 | *-backups/ 2 | ~* 3 | -------------------------------------------------------------------------------- /circuits/OSSI_CM2/DIP_socket.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/DIP_socket.kicad_sym -------------------------------------------------------------------------------- /circuits/OSSI_CM2/OSSI_CM2.kicad_dru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/OSSI_CM2.kicad_dru -------------------------------------------------------------------------------- /circuits/OSSI_CM2/OSSI_CM2.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/OSSI_CM2.kicad_pcb -------------------------------------------------------------------------------- /circuits/OSSI_CM2/OSSI_CM2.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/OSSI_CM2.kicad_prl -------------------------------------------------------------------------------- /circuits/OSSI_CM2/OSSI_CM2.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/OSSI_CM2.kicad_pro -------------------------------------------------------------------------------- /circuits/OSSI_CM2/OSSI_CM2.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/OSSI_CM2.kicad_sch -------------------------------------------------------------------------------- /circuits/OSSI_CM2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/README.md -------------------------------------------------------------------------------- /circuits/OSSI_CM2/bom/OSSI_CM2-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/bom/OSSI_CM2-Pinout.pdf -------------------------------------------------------------------------------- /circuits/OSSI_CM2/bom/OSSI_CM2-ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/bom/OSSI_CM2-ibom.html -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-B_Cu.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-B_Mask.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-B_Paste.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-B_Silkscreen.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-Edge_Cuts.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-F_Cu.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-F_Mask.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-F_Paste.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-F_Silkscreen.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-In1_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-In1_Cu.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-In2_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-In2_Cu.gbr -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-NPTH-drl_map.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-NPTH-drl_map.dxf -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-NPTH.drl -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-PTH-drl_map.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-PTH-drl_map.dxf -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-PTH.drl -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2-job.gbrjob -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fabrication/OSSI_CM2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fabrication/OSSI_CM2.zip -------------------------------------------------------------------------------- /circuits/OSSI_CM2/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/fp-lib-table -------------------------------------------------------------------------------- /circuits/OSSI_CM2/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/sym-lib-table -------------------------------------------------------------------------------- /circuits/OSSI_CM2/test_reports/1V25_modification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/test_reports/1V25_modification.jpg -------------------------------------------------------------------------------- /circuits/OSSI_CM2/test_reports/Initial Operation Test Report Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/test_reports/Initial Operation Test Report Template.md -------------------------------------------------------------------------------- /circuits/OSSI_CM2/test_reports/OSSI_CM2_HW_Errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/test_reports/OSSI_CM2_HW_Errata.md -------------------------------------------------------------------------------- /circuits/OSSI_CM2/test_reports/design_calculations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/test_reports/design_calculations.ipynb -------------------------------------------------------------------------------- /circuits/OSSI_CM2/test_reports/first_blinky.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2/test_reports/first_blinky.elf -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/.gitignore: -------------------------------------------------------------------------------- 1 | *-backups/ 2 | ~* 3 | -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/DIP_socket.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/DIP_socket.kicad_sym -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/OSSI_CM2.kicad_dru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/OSSI_CM2.kicad_dru -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/OSSI_CM2.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/OSSI_CM2.kicad_pcb -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/OSSI_CM2.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/OSSI_CM2.kicad_prl -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/OSSI_CM2.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/OSSI_CM2.kicad_pro -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/OSSI_CM2.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/OSSI_CM2.kicad_sch -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/OSSI_CM2.pretty/OSSI_CM2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/OSSI_CM2.pretty/OSSI_CM2.kicad_mod -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/README.md -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/bom/OSSI_CM2-V1.1_Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/bom/OSSI_CM2-V1.1_Pinout.pdf -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/fp-lib-table -------------------------------------------------------------------------------- /circuits/OSSI_CM2V1.1/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V1.1/sym-lib-table -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/.gitignore: -------------------------------------------------------------------------------- 1 | *-backups/ 2 | ~* 3 | -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/DIP_socket.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/DIP_socket.kicad_sym -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/OSSI_CM2.kicad_dru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/OSSI_CM2.kicad_dru -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/OSSI_CM2.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/OSSI_CM2.kicad_pcb -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/OSSI_CM2.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/OSSI_CM2.kicad_prl -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/OSSI_CM2.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/OSSI_CM2.kicad_pro -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/OSSI_CM2.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/OSSI_CM2.kicad_sch -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/OSSI_CM2.pretty/OSSI_CM2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/OSSI_CM2.pretty/OSSI_CM2.kicad_mod -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/README.md -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/bom/OSSI_CM2-V2.0_Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/bom/OSSI_CM2-V2.0_Pinout.pdf -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/fp-lib-table -------------------------------------------------------------------------------- /circuits/OSSI_CM2V2.0/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/OSSI_CM2V2.0/sym-lib-table -------------------------------------------------------------------------------- /circuits/inverter/.gitignore: -------------------------------------------------------------------------------- 1 | *-backups 2 | -------------------------------------------------------------------------------- /circuits/inverter/AC_current_measurement.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/AC_current_measurement.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/AC_current_measurement.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/AC_current_measurement.sch -------------------------------------------------------------------------------- /circuits/inverter/AC_filter.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/AC_filter.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/AC_filter.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/AC_filter.sch -------------------------------------------------------------------------------- /circuits/inverter/AC_switch.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/AC_switch.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/AC_switch.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/AC_switch.sch -------------------------------------------------------------------------------- /circuits/inverter/DC_booster.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/DC_booster.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/DC_booster.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/DC_booster.sch -------------------------------------------------------------------------------- /circuits/inverter/DC_input.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/DC_input.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/DC_input.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/DC_input.sch -------------------------------------------------------------------------------- /circuits/inverter/OSSI_MK_I-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/OSSI_MK_I-cache.lib -------------------------------------------------------------------------------- /circuits/inverter/OSSI_MK_I.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/OSSI_MK_I.kicad_pcb -------------------------------------------------------------------------------- /circuits/inverter/OSSI_MK_I.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/OSSI_MK_I.kicad_prl -------------------------------------------------------------------------------- /circuits/inverter/OSSI_MK_I.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/OSSI_MK_I.kicad_pro -------------------------------------------------------------------------------- /circuits/inverter/OSSI_MK_I.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/OSSI_MK_I.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/OSSI_MK_I.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/OSSI_MK_I.pro -------------------------------------------------------------------------------- /circuits/inverter/OSSI_MK_I.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/OSSI_MK_I.sch -------------------------------------------------------------------------------- /circuits/inverter/analog_frontend.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/analog_frontend.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/analog_frontend.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/analog_frontend.sch -------------------------------------------------------------------------------- /circuits/inverter/drivers.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/drivers.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/drivers.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/drivers.sch -------------------------------------------------------------------------------- /circuits/inverter/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/fp-lib-table -------------------------------------------------------------------------------- /circuits/inverter/highside_supply.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/highside_supply.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/highside_supply.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/highside_supply.sch -------------------------------------------------------------------------------- /circuits/inverter/interface.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/interface.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/inverter.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/inverter.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/inverter.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/inverter.sch -------------------------------------------------------------------------------- /circuits/inverter/main_controller.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/main_controller.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/main_controller.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/main_controller.sch -------------------------------------------------------------------------------- /circuits/inverter/power_supply.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/power_supply.kicad_sch -------------------------------------------------------------------------------- /circuits/inverter/power_supply.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/power_supply.sch -------------------------------------------------------------------------------- /circuits/inverter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/readme.md -------------------------------------------------------------------------------- /circuits/inverter/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/inverter/sym-lib-table -------------------------------------------------------------------------------- /circuits/lib/LM5104.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/LM5104.dcm -------------------------------------------------------------------------------- /circuits/lib/LM5104.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/LM5104.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/LM5104.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/LM5104.lib -------------------------------------------------------------------------------- /circuits/lib/LM75x.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /circuits/lib/LM75x.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/LM75x.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/LM75x.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/LM75x.lib -------------------------------------------------------------------------------- /circuits/lib/M24M01-xx.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/M24M01-xx.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/NCP1117LP.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/NCP1117LP.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/NodeMCU.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/NodeMCU.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/OSSI_CM.pretty/OSSI_CM.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_CM.pretty/OSSI_CM.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_CM1.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_CM1.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/OSSI_CM2.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_CM2.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_components.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_components.dcm -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_components.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_components.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_components.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_components.lib -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/0603_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/0603_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/0603_W_C.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/0603_W_C.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/0603_W_LED.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/0603_W_LED.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/0603_W_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/0603_W_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/0805_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/0805_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/0805_W_C.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/0805_W_C.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/0805_W_L.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/0805_W_L.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/0805_W_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/0805_W_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/1206_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/1206_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/1206_W.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/1206_W.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/2512_W.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/2512_W.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/C_pol_LS5.08mm_D10mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/C_pol_LS5.08mm_D10mm.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/DIP-40_Socket_25.4mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/DIP-40_Socket_25.4mm.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/HC49_US.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/HC49_US.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/Hole_M3.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/Hole_M3.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/Hole_M4.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/Hole_M4.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/JUMPER_CLOSED.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/JUMPER_CLOSED.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/JUMPER_OPEN.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/JUMPER_OPEN.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/LQFP-64_10x10_Pitch0.5mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/LQFP-64_10x10_Pitch0.5mm.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/MELF_0204_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/MELF_0204_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/MELF_0204_W.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/MELF_0204_W.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/MELF_0207_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/MELF_0207_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/MELF_0207_W.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/MELF_0207_W.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/MSOP8.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/MSOP8.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/OJE-SH-112HM.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/OJE-SH-112HM.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/PDIP-8_300mil.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/PDIP-8_300mil.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/Resistor_THT_10mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/Resistor_THT_10mm.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/SOD123_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/SOD123_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/SOD323_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/SOD323_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/SOIC8.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/SOIC8.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/SOIC8_CurrentSensor.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/SOIC8_CurrentSensor.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/SOT-23-5.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/SOT-23-5.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/SOT-89_LDO.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/SOT-89_LDO.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/SOT23_BEC_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/SOT23_BEC_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/SOT23_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/SOT23_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/SOT323_R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/SOT323_R.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/STARPOINT.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/STARPOINT.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TDK_EI25_EE25_B66208.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TDK_EI25_EE25_B66208.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TESTPOINT_1mm_SMD.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TESTPOINT_1mm_SMD.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TESTPOINT_1mm_THD.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TESTPOINT_1mm_THD.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TO-220-H.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TO-220-H.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TO-220-HT.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TO-220-HT.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TO-220-V.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TO-220-V.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TO-252-DPAK-GSD.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TO-252-DPAK-GSD.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TO-92.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TO-92.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TO-92_CBE.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TO-92_CBE.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TO-92_RAC.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TO-92_RAC.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/OSSI_standard_footprints.pretty/TSSOP8.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/OSSI_standard_footprints.pretty/TSSOP8.kicad_mod -------------------------------------------------------------------------------- /circuits/lib/SN47HCS04.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/SN47HCS04.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/STM32-L412.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/STM32-L412.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/STM32-L412_v2.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/STM32-L412_v2.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/Si86xx.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /circuits/lib/Si86xx.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/Si86xx.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/Si86xx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/Si86xx.lib -------------------------------------------------------------------------------- /circuits/lib/Si871x_2x.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /circuits/lib/Si871x_2x.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/Si871x_2x.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/Si871x_2x.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/Si871x_2x.lib -------------------------------------------------------------------------------- /circuits/lib/UC2845.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | $CMP UC2845A 4 | D Current Mode PWM Controller 5 | $ENDCMP 6 | # 7 | #End Doc Library 8 | -------------------------------------------------------------------------------- /circuits/lib/UC2845.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/UC2845.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/UC2845.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/UC2845.lib -------------------------------------------------------------------------------- /circuits/lib/UCC23313.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/UCC23313.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/acs722.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/acs722.dcm -------------------------------------------------------------------------------- /circuits/lib/acs722.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/acs722.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/acs722.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/acs722.lib -------------------------------------------------------------------------------- /circuits/lib/connectors.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/connectors.dcm -------------------------------------------------------------------------------- /circuits/lib/connectors.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/connectors.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/connectors.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/connectors.lib -------------------------------------------------------------------------------- /circuits/lib/isl21070.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/isl21070.dcm -------------------------------------------------------------------------------- /circuits/lib/isl21070.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/isl21070.lib -------------------------------------------------------------------------------- /circuits/lib/kv30f.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/kv30f.dcm -------------------------------------------------------------------------------- /circuits/lib/kv30f.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/kv30f.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/kv30f.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/kv30f.lib -------------------------------------------------------------------------------- /circuits/lib/lm317.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/lm317.dcm -------------------------------------------------------------------------------- /circuits/lib/lm317.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/lm317.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/lm317.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/lm317.lib -------------------------------------------------------------------------------- /circuits/lib/lm4030.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/lm4030.dcm -------------------------------------------------------------------------------- /circuits/lib/lm4030.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/lm4030.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/lm4030.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/lm4030.lib -------------------------------------------------------------------------------- /circuits/lib/lm431.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/lm431.dcm -------------------------------------------------------------------------------- /circuits/lib/lm431.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/lm431.lib -------------------------------------------------------------------------------- /circuits/lib/pin_headers.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/pin_headers.kicad_sym -------------------------------------------------------------------------------- /circuits/lib/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/readme.md -------------------------------------------------------------------------------- /circuits/lib/tl431.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/tl431.dcm -------------------------------------------------------------------------------- /circuits/lib/tl431.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/circuits/lib/tl431.lib -------------------------------------------------------------------------------- /documentation/images/OSSI_use_case_battery_ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/documentation/images/OSSI_use_case_battery_ac.png -------------------------------------------------------------------------------- /documentation/images/OSSI_use_case_solar_ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/documentation/images/OSSI_use_case_solar_ac.png -------------------------------------------------------------------------------- /documentation/images/OSSI_use_case_solar_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/documentation/images/OSSI_use_case_solar_battery.png -------------------------------------------------------------------------------- /documentation/images/OSSI_use_case_solar_dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/documentation/images/OSSI_use_case_solar_dc.png -------------------------------------------------------------------------------- /documentation/images/OSSI_use_case_wind_ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/documentation/images/OSSI_use_case_wind_ac.png -------------------------------------------------------------------------------- /documentation/images/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/documentation/images/Readme.md -------------------------------------------------------------------------------- /documentation/images/block_diagram_OSSI_system.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/documentation/images/block_diagram_OSSI_system.pdf -------------------------------------------------------------------------------- /documentation/images/block_diagram_OSSI_system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/documentation/images/block_diagram_OSSI_system.svg -------------------------------------------------------------------------------- /documentation/images/use_cases_OSSI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transistorgrab/OSSI/HEAD/documentation/images/use_cases_OSSI.svg --------------------------------------------------------------------------------