/nanoReflowController

Reflow Oven Controller. See below for more information.

Primary LanguageC++

Reflow Oven Controller

News

  • Forked from 0xPIT & uploaded the code after a lot of restructuration
  • Board design has also changed

Arduino-based reflow oven controller with:

  • PID loop control
  • Wave Packet control for AC output
  • graphic TFT LC-Display, drawing the temperature curves
    • using a 5v compatible 1.8" of 1.44" TFT SPI display with ST7735 controller
  • solely controlled using a cheap rotary encoder and its single button
  • uses a MAX6675 module as interface to a K type thermocouple
  • stores up to 30 temperature profiles in EEPROM
  • configurable PID-parameters
  • simple, small hardware to drive loads up to 600V and up to 2A without heatsink
  • powered throuhg one of three options: 12v RAW pin, 5v pin or 5v USB
  • optional 12v fan control (not yet implemented in the code)
  • Please Note: Requires Arduino IDE 1.5.x or newer

(c) 2017 David Sanz Kirbis (c) 2014 Karl Pitrich karl@pitrich.com in part based on a project (c) 2013 Ed Simmons ed@estechnical.co.uk

Warning: This project operates with possibly lethal mains voltage. If you are unsure what to do, don't do it and get help from an experienced tinkerer with professional training.

Minimal build

BoardPic1 BoardPic2

Completely populated

Complete1 Complete2 Complete3

Enclosed and mounted on halogen floodlight

(more info: Halogen Floodlight SMT reflow)

Floodlight

Obtaining the source code

Get the code using git.

git clone https://github.com/dasaki/nanoReflowController.git

or download a Snapshot.

I've added some libraries I've used as submodules to the git repositroy, so it is important that, after cloning this repository, you do

git submodule update --init

to fetch all involved libraries. (See: Submodule Cheat Sheet)

Installation

Of course, you need to have the Arduino IDE installed. I've worked with version 1.5.x only and I will not support older versions. Get it from the Arduino Download page or upgrade you current Arduino setup.

There as several dependencies you need to install.

If you are unfamiliar with Arduino Libraries, please read the library guide. Basically, each library needs to be liked or copied into your Arduino library folder.

Licensing

The MIT License (MIT)

Copyright (c) 2017 David Sanz Kirbis
All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.