├── .gitignore ├── Firmware ├── README.md ├── pcb_reflow_fw │ └── pcb_reflow_fw.ino ├── pcb_reflow_fw_PlatformIO │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── README.md │ ├── avrdude.conf │ ├── platformio.ini │ └── src │ │ └── main.cpp └── testing │ ├── analysis │ ├── LMT85 study.ipynb │ ├── True Bed Temp Estimation.ipynb │ └── data │ │ ├── thermal_analysis1.log │ │ ├── thermal_analysis2.log │ │ ├── thermal_analysis3.log │ │ ├── thermal_analysis_with_approximation1.log │ │ └── thermal_analysis_with_approximation2.log │ └── temperature_groundtruth_fw │ └── temperature_groundtruth_fw.ino ├── Heatplate_v1.0 ├── Heatplate_v1.0.kicad_pcb ├── Heatplate_v1.0.kicad_prl ├── Heatplate_v1.0.kicad_pro ├── Heatplate_v1.0.kicad_sch ├── Heatplate_v1.0.net ├── Heatplate_v1.0_Schematic.pdf ├── PERIPHERALS.kicad_sch ├── bom │ └── Heatplate_v1.0_interactiveBOM.html ├── fp-info-cache └── renders │ ├── Heatplate_v1.0_back.png │ └── Heatplate_v1.0_front.png ├── Heatplate_v1.1 ├── Heatplate_v1.1.kicad_pcb ├── Heatplate_v1.1.kicad_prl ├── Heatplate_v1.1.kicad_pro ├── Heatplate_v1.1.kicad_sch ├── Heatplate_v1.1.net ├── Heatplate_v1.1.pdf ├── PERIPHERALS.kicad_sch ├── bom │ └── ibom.html ├── fp-info-cache ├── gerbers │ └── gerbers_Heatplate_v1.1_JLCPCB.zip └── renders │ ├── Heatplate_v1.1_back.png │ └── Heatplate_v1.1_front.png ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/.gitignore -------------------------------------------------------------------------------- /Firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/README.md -------------------------------------------------------------------------------- /Firmware/pcb_reflow_fw/pcb_reflow_fw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/pcb_reflow_fw/pcb_reflow_fw.ino -------------------------------------------------------------------------------- /Firmware/pcb_reflow_fw_PlatformIO/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/pcb_reflow_fw_PlatformIO/.gitignore -------------------------------------------------------------------------------- /Firmware/pcb_reflow_fw_PlatformIO/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/pcb_reflow_fw_PlatformIO/.vscode/extensions.json -------------------------------------------------------------------------------- /Firmware/pcb_reflow_fw_PlatformIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/pcb_reflow_fw_PlatformIO/README.md -------------------------------------------------------------------------------- /Firmware/pcb_reflow_fw_PlatformIO/avrdude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/pcb_reflow_fw_PlatformIO/avrdude.conf -------------------------------------------------------------------------------- /Firmware/pcb_reflow_fw_PlatformIO/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/pcb_reflow_fw_PlatformIO/platformio.ini -------------------------------------------------------------------------------- /Firmware/pcb_reflow_fw_PlatformIO/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/pcb_reflow_fw_PlatformIO/src/main.cpp -------------------------------------------------------------------------------- /Firmware/testing/analysis/LMT85 study.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/testing/analysis/LMT85 study.ipynb -------------------------------------------------------------------------------- /Firmware/testing/analysis/True Bed Temp Estimation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/testing/analysis/True Bed Temp Estimation.ipynb -------------------------------------------------------------------------------- /Firmware/testing/analysis/data/thermal_analysis1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/testing/analysis/data/thermal_analysis1.log -------------------------------------------------------------------------------- /Firmware/testing/analysis/data/thermal_analysis2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/testing/analysis/data/thermal_analysis2.log -------------------------------------------------------------------------------- /Firmware/testing/analysis/data/thermal_analysis3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/testing/analysis/data/thermal_analysis3.log -------------------------------------------------------------------------------- /Firmware/testing/analysis/data/thermal_analysis_with_approximation1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/testing/analysis/data/thermal_analysis_with_approximation1.log -------------------------------------------------------------------------------- /Firmware/testing/analysis/data/thermal_analysis_with_approximation2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/testing/analysis/data/thermal_analysis_with_approximation2.log -------------------------------------------------------------------------------- /Firmware/testing/temperature_groundtruth_fw/temperature_groundtruth_fw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Firmware/testing/temperature_groundtruth_fw/temperature_groundtruth_fw.ino -------------------------------------------------------------------------------- /Heatplate_v1.0/Heatplate_v1.0.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/Heatplate_v1.0.kicad_pcb -------------------------------------------------------------------------------- /Heatplate_v1.0/Heatplate_v1.0.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/Heatplate_v1.0.kicad_prl -------------------------------------------------------------------------------- /Heatplate_v1.0/Heatplate_v1.0.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/Heatplate_v1.0.kicad_pro -------------------------------------------------------------------------------- /Heatplate_v1.0/Heatplate_v1.0.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/Heatplate_v1.0.kicad_sch -------------------------------------------------------------------------------- /Heatplate_v1.0/Heatplate_v1.0.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/Heatplate_v1.0.net -------------------------------------------------------------------------------- /Heatplate_v1.0/Heatplate_v1.0_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/Heatplate_v1.0_Schematic.pdf -------------------------------------------------------------------------------- /Heatplate_v1.0/PERIPHERALS.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/PERIPHERALS.kicad_sch -------------------------------------------------------------------------------- /Heatplate_v1.0/bom/Heatplate_v1.0_interactiveBOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/bom/Heatplate_v1.0_interactiveBOM.html -------------------------------------------------------------------------------- /Heatplate_v1.0/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/fp-info-cache -------------------------------------------------------------------------------- /Heatplate_v1.0/renders/Heatplate_v1.0_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/renders/Heatplate_v1.0_back.png -------------------------------------------------------------------------------- /Heatplate_v1.0/renders/Heatplate_v1.0_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.0/renders/Heatplate_v1.0_front.png -------------------------------------------------------------------------------- /Heatplate_v1.1/Heatplate_v1.1.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/Heatplate_v1.1.kicad_pcb -------------------------------------------------------------------------------- /Heatplate_v1.1/Heatplate_v1.1.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/Heatplate_v1.1.kicad_prl -------------------------------------------------------------------------------- /Heatplate_v1.1/Heatplate_v1.1.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/Heatplate_v1.1.kicad_pro -------------------------------------------------------------------------------- /Heatplate_v1.1/Heatplate_v1.1.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/Heatplate_v1.1.kicad_sch -------------------------------------------------------------------------------- /Heatplate_v1.1/Heatplate_v1.1.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/Heatplate_v1.1.net -------------------------------------------------------------------------------- /Heatplate_v1.1/Heatplate_v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/Heatplate_v1.1.pdf -------------------------------------------------------------------------------- /Heatplate_v1.1/PERIPHERALS.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/PERIPHERALS.kicad_sch -------------------------------------------------------------------------------- /Heatplate_v1.1/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/bom/ibom.html -------------------------------------------------------------------------------- /Heatplate_v1.1/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/fp-info-cache -------------------------------------------------------------------------------- /Heatplate_v1.1/gerbers/gerbers_Heatplate_v1.1_JLCPCB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/gerbers/gerbers_Heatplate_v1.1_JLCPCB.zip -------------------------------------------------------------------------------- /Heatplate_v1.1/renders/Heatplate_v1.1_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/renders/Heatplate_v1.1_back.png -------------------------------------------------------------------------------- /Heatplate_v1.1/renders/Heatplate_v1.1_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/Heatplate_v1.1/renders/Heatplate_v1.1_front.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerSpatz/PCB-reflow-solder-heat-plate/HEAD/README.md --------------------------------------------------------------------------------