├── .gitignore ├── .vscode ├── arduino.json └── c_cpp_properties.json ├── Eagle ├── v2_zero │ ├── Arduino_Zero.brd │ └── Arduino_Zero.sch └── v2_zero_eth │ ├── Arduino_Zero.brd │ └── Arduino_Zero.sch ├── GFE_Reflow_Oven_Controller ├── .theia │ └── launch.json ├── GFE_Reflow_Oven_Controller.ino ├── Profile_Setting.ino └── functions.ino ├── LICENSE ├── Processing-Serial-Controller └── simulator │ ├── aggiornaInterfaccia.pde │ ├── gui.pde │ └── simulator.pde ├── Python-LAN-Controller ├── .vscode │ └── arduino.json ├── __pycache__ │ ├── leds.cpython-310.pyc │ └── reflow.cpython-310.pyc ├── config.cfg ├── eth_discovery.py ├── leds.py ├── modbus │ └── modbus.py ├── openai_reflow.py ├── reflow.py └── temp_graph.py ├── README.md └── Serial Reflow Oven Controller Box.STL /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/.vscode/arduino.json -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Eagle/v2_zero/Arduino_Zero.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Eagle/v2_zero/Arduino_Zero.brd -------------------------------------------------------------------------------- /Eagle/v2_zero/Arduino_Zero.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Eagle/v2_zero/Arduino_Zero.sch -------------------------------------------------------------------------------- /Eagle/v2_zero_eth/Arduino_Zero.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Eagle/v2_zero_eth/Arduino_Zero.brd -------------------------------------------------------------------------------- /Eagle/v2_zero_eth/Arduino_Zero.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Eagle/v2_zero_eth/Arduino_Zero.sch -------------------------------------------------------------------------------- /GFE_Reflow_Oven_Controller/.theia/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/GFE_Reflow_Oven_Controller/.theia/launch.json -------------------------------------------------------------------------------- /GFE_Reflow_Oven_Controller/GFE_Reflow_Oven_Controller.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/GFE_Reflow_Oven_Controller/GFE_Reflow_Oven_Controller.ino -------------------------------------------------------------------------------- /GFE_Reflow_Oven_Controller/Profile_Setting.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/GFE_Reflow_Oven_Controller/Profile_Setting.ino -------------------------------------------------------------------------------- /GFE_Reflow_Oven_Controller/functions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/GFE_Reflow_Oven_Controller/functions.ino -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/LICENSE -------------------------------------------------------------------------------- /Processing-Serial-Controller/simulator/aggiornaInterfaccia.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Processing-Serial-Controller/simulator/aggiornaInterfaccia.pde -------------------------------------------------------------------------------- /Processing-Serial-Controller/simulator/gui.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Processing-Serial-Controller/simulator/gui.pde -------------------------------------------------------------------------------- /Processing-Serial-Controller/simulator/simulator.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Processing-Serial-Controller/simulator/simulator.pde -------------------------------------------------------------------------------- /Python-LAN-Controller/.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Python-LAN-Controller/.vscode/arduino.json -------------------------------------------------------------------------------- /Python-LAN-Controller/__pycache__/leds.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Python-LAN-Controller/__pycache__/leds.cpython-310.pyc -------------------------------------------------------------------------------- /Python-LAN-Controller/__pycache__/reflow.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Python-LAN-Controller/__pycache__/reflow.cpython-310.pyc -------------------------------------------------------------------------------- /Python-LAN-Controller/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Python-LAN-Controller/config.cfg -------------------------------------------------------------------------------- /Python-LAN-Controller/eth_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Python-LAN-Controller/eth_discovery.py -------------------------------------------------------------------------------- /Python-LAN-Controller/leds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Python-LAN-Controller/leds.py -------------------------------------------------------------------------------- /Python-LAN-Controller/modbus/modbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Python-LAN-Controller/modbus/modbus.py -------------------------------------------------------------------------------- /Python-LAN-Controller/openai_reflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Python-LAN-Controller/openai_reflow.py -------------------------------------------------------------------------------- /Python-LAN-Controller/reflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Python-LAN-Controller/reflow.py -------------------------------------------------------------------------------- /Python-LAN-Controller/temp_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Python-LAN-Controller/temp_graph.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/README.md -------------------------------------------------------------------------------- /Serial Reflow Oven Controller Box.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacu92/Arduino-Reflow-Oven-Controller/HEAD/Serial Reflow Oven Controller Box.STL --------------------------------------------------------------------------------