DIY Reflow Oven w/ Exhaust Build – Part 1

Yet another toaster oven build. I know…

There is a lot of debate if a DIY reflow oven even needs a PID controller. The argument goes, either spend the money and buy a professional machine for a few thousand or build your own and just eyeball the temperature with a manual on/off switch. Anything in between isn’t worth it because of the large temperature variations due to the nature of the heating elements, etc, etc. There is probably some truth to this, but who doesn’t love over engineering workshop tools?

Side note: This post isn’t meant to be a guide (read: I am not responsible if you burn your house down). I suggest purchasing a kit from whizoo or someone similar because this probably isn’t worth the time investment.

There are two problems I was hoping the addition of an exhaust fan would solve.

  1. PID tuning difficulties: The internal temperature of an oven is difficult to control if there is no way to remove heat due to thermal inertia. It takes a few seconds for the temperature to increase after the heating elements turn on and many seconds to stop increasing after they turn off. This makes tuning difficult and usually requires hard coding difficult parts of the reflow process.
  2. Rapid cooling: Most reflow profiles required rapid cooling after reaching maximum temperature (see below), which isn’t possible without some way of removing heat. Opening the oven door is one workaround that is probably good enough for most people, but an automated solution would be nice.

Hardware

I bought a broken Breville BOV450XL because it has 4 heats quartz heaters.

After disassembling the oven, I cut out the bulge in the back to make room for the exhaust.

Added some JB weld to attach some sheet metal. I should have cut a hole in the back before I did this.

Attached a 4 inch duct with a stepper motor to control the air damper. The air isn’t that hot when it reaches the PC fan so I’m hoping it holds up. I’ve also attach some insulation to the air damper to keep in as much heat when it’s closed.

I used DEI Floor & Tunnel Shield to insulate the inside as whizoo has suggested in their build guide. I opted for the non-adhesive version because I didn’t like the idea of glue inside of the oven even if it’s temperature rated. The outside of the oven was painted with some left over high temperature paint I had and insulated with a ceramic fiber blanket.

I cut a section in the control panel to make room for an Adafruit 2.8 inch LCD. The bottom two holes were filled in with old automotive fiberglass filler I had. The controller is a Raspberry Pi Zero W. A motor driver and solid state relay control the fan and heating elements. They are monitored by a temperature sensor to make sure they don’t get too hot.

The mostly finished product can bee seen in the video linked in the post.

Software

The software is very basic so far. It allows manual control of the oven for testing purposes and displays the temperature on a graph with the current reflow profile. It was more difficult to cross compile Qt than it was to build the application.

Surprisingly, I was able to get away with only using proportional control with the addition of the exhaust fan!

First test

The first test was a success. I was able to solder a couple of fine pitch components like the BMP280 and the SGP40 for another home automation project I’m working on. This board will track home water usage, water leaks and air quality. More details on that soon.

Future Improvements

  1. The oven is so air tight, I still need to open the door a bit to move enough air through through the exhaust during the final cooling phase. Maybe I should add some kind of air intake valve.
  2. The PID controller needs to be tuned a bit more to reduce overshoot so the fan doesn’t come on so much.

Cross Platform Crypto Currency Tracker

coinagecap

I built a crypto currency tracker for the desktop to experiment building and deploying a Qt5 application. Getting the initial prototype ready was easy, but I quickly ran into a few problems integrating QML, Javascript and C++. Initially the entire application was written in QML, but I could not find an elegant way to sort and filter the list simultaneously so I turned to the C++ class QSortFilterProxyModel. However, there are examples on sorting without filtering.

After exposing the QSortFilterProxyModel class to QML I was able to define custom filters based on each items name and “star” while also sorting based on multiple criteria. While this solution worked well it broke data change animations because QSortFilterProxyModel does not emit the correct beginmoverows() signal. This is something I don’t have a solution for yet.

I am continually impressed how much Qt has expanded their product. You can now build for embedded devices, Android, iOS, and all major desktop platforms. However, the trade off for a standardized toolkit is inflexibility. Developing a plugin or adapter to the outside world, which could be calling a Java API on Android or calling Qt’s C++ APIs from QML, will probably be required for moderately complex applications.

Source: https://github.com/nabilt/coinagecap

DIY Electronic Derailleur on Instructable

60a38-elec_final
I’ve posted an Instructable showing how to build and install an electronic derailleur. If you like this project please vote on the Instructables page. A more complete and finished product including my bike computer is in the works.
For now the Arduino sketch, schematics, Fritzing diagram, bill of materials and CAD diagrams can be found on the github.

 

Open source Bluetooth 4 breakout board means no more Mi-Fi

Update: Project is posted on github
One thing I always need for my hardware projects whether I’m working on sensors for the home or a fitness device is a low power, cross platform and affordable wireless module. I’ve used HopeRF modules like the RMF22B for their affordability and low power capabilities, but because they don’t use any standard wireless protocol I’m forced to make adapters for endpoints like smart phones or computers. Wireless standards like ZigBee partially solve this problem, but off the shelf modules are expensive and still don’t help if you want to talk to a smart phone. One might think Bluetooth is the solution then, but in the past power efficiency and range were a problem if you were building a temperature sensor for example. Also, you had to be a certified Apple accessory developer if you wanted to make a Bluetooth accessory for the most popular smart phone in the market. Well, all of this has changed with Bluetooth 4.
Bluetooth 4 Low Energy is the latest incarnation of the Bluetooth standard, which most devices released this year will adopt. Bluetooth.com says,
Key features of Bluetooth low energy wireless technology include:
  • Ultra-low peak, average and idle mode power consumption
  • Ability to run for years on standard, coin-cell batteries
  • Low cost
  • Multi-vendor interoperability
  • Enhanced range
There are two reasons why you should be excited by this. First, this low energy mode means you can use Bluetooth in a range of new applications like home automation, wearable electronics or anything that needs to log data for long periods of time. Second, Apple has opened up their Bluetooth API so anyone can create a Bluetooth accessory for iOS 5 and later. Why did they do this? One reason might be they don’t have to worry about developers draining a users battery with a poorly made accessory with the new standard. I can’t think of any reason to use a different wireless standard for these reasons.
This brings me to my breakout board. This breakout board is the reference schematic for the Nordic nRF8001 done in Eagle originally done in Altium by Nordic. It is a simple wireless transceiver with an SPI interface with few passive components.
Why this IC? A quick search on the major electronic distributor websites shows there are a few manufacturers of Bluetooth 4 chips.
  • Blue Giga   ~$20 – $40
  • Cambridge Silicon Radio   ~$3
  • Nordic Semiconductor   ~$4
  • TI   ~$5
  • Panasonic  ~$15
  • RFM (same one iphone uses)  ~$40
Parts from Panasonic, Blue Giga and RFM provide ready to go modules, which explain their high price. RFM actually includes WiFi! Only TI, CSR and Nordic provide ICs. However, TI is a bit larger and expensive because it provides a complete system-on-a-chip with integrated 8051 processor while CSR makes you sign a NDA to get the datasheet. So I choose Nordic because of the ICs small footprint, open specs, affordability and simplicity. Sourcing the parts from Mouser.com it looks like a populated board should cost ~$12. Take a look at my BOM.
One thing you should keep in mind is none of these chips are backward compatible with older Bluetooth standards, but that should not be a problem by the end of 2012.
I plan to send out the board and order the parts this week. Hopefully I can also start working on firmware and a few demo smartphone apps. Until then checkout the source on Github.

Credit to Dr. Michael Kroll for the information about Bluetooth 4 and Mi-Fi. Check out his Arduino Shield.

nRF8001 Breakout board schematic

Weekend Project: Likelist.ca

Update: Source code on Github
Introducing www.likelist.ca. A way to share all of your likes and favorites from across the web. You can think of it like about.me except with your ‘likes’ from various social networks embedded on a Pinterest style page.
Planned Improvements
Infinite scroll, more services, pop out images for a larger view, user thumbnails, personal pages, visuals for tweets with no links and instructions 🙂
Unfortunately, Facebook doesn’t provide a users likes without authentication, which defeats the purpose of having a public like list and Google Plus doesn’t have an API for retrieving +1’s yet.

 

OBD-2 Testing Update

I finished testing the OBD-II adaptor board this week on a Toyota Camry. As you can see in the picture the board had a few bad connections, but nothing that couldn’t be fixed with a few jumpers.

I was able to get a number of stats from the free Torque Android app like
  • Throttle position
  • Engine PSI
  • Collant temperature
  • Engine Load
  • A number of Diagnostic Trouble Codes
  • O2 sensor voltage
  • Revs
One interesting note I learned was the evaporative system test reported as incomplete, which Toyota supposedly repaired during my last visit!
Next up, test the remaining OBD-II protocols and bluetooth range. Expect a new revision in a few weeks.

OBD-2 Build Update

I finally finished assembling the OBD-2 board yesterday. It has taken a while because I’ve been working on an exciting web app for hardware engineers, which will be launching in a few days. I will continue to update the schematics on github, but I don’t recommend building version 1.0. There are a couple of layout and footprint issues I want to workout first. Next up, testing.

Home Energy Prototypes

Web Interface Version 1 with a Google look and feel

In this post I’ll go over some of my prototype home energy/automation creations.

Wireless Temperature Sensor

Wireless temperature sensor with attiny45

This wireless temperature sensor has Sparkfun’s basic 315MHz wireless transmitter, an ATtiny45, LM335A temperature sensor and a 12mm battery holder. This device lasted a couple of weeks by disabling the brown out detector, enabling internal pull ups on all unused I/O and disabling all peripherals. It periodically wakes up and transmit the temperature to a hub with an ATtiny328.

Smart Meter Reader
Wireless Smart Meter reader with IR LED

Using an IR detector from Sparkfun to read the IR signals from the Smart Meter it is possible to measure power usage with a resolution of 1 watt-hour. Since my meter was outside I had to build and enclosure to keep the sunlight out. The newer Smart Meters apparently run a mesh network to report the homes power usage back to the power company, but the signals are encrypted. Still might be worth investigating because they appear to use Zigbee. I plan to try with my new Zigduino.

By separately turning appliances on and off and subtracting the before and after meter readings it is possible to get the power usage for each device. This is actually more accurate than current clamps because the smart meter is multiplying the actual voltage and current instead of the estimated voltage. For this reason current clamps can be inaccurate for inductive loads.

Here are some example readings from my house.
Fridge                    - 180W
HDTV TV + cable box       - 130W
Hot water heater          - 70W
Hall way spot lights full - 220W
Dryer                     - 5840W
Large stove high          - 3000W
Toaster oven              - 1000W
Notebook charge           - 65W

Wireless Power Bar

220VAC @ 20A relay and current clamp

This was part of a wireless power bar, which is at the breadboard stage. This containes an ATmeaga168, Hope RFM12B wireless module, current clamp, 220 VAC relay,  which connected to a power bar. The web interface would display the power usage of the power bar and the state of the relay. The state is controllable via the web interface.

Wireless Thermostat

Wireless Thermostat with ATmega328
Blue thing is the temperature and humidity sensor

The wireless thermostat is probably the most important part of this build. It has one relay to control each part of the HVAC system: heating, AC and fan. Like the previous devices it has a Hope RF module for communication and an ATmega328 for control. I replaced the LM35 temperature sensor for a module with a digital interface and humidity sensor. The AVR runs a simple PID controller to moderate the house temperature, but a more sophisticated control methods is definitely needed. In the future it should have safe guards to protect the HVAC from overwork especially when overshoot occurs. This current version works OK, but I am hesitant to continue testing on my house. The best solution would be to build a test chamber like the folks at Nest did.

Nest’s thermostat test chamber
(via Wired article)

Wireless Hub and Garage Door Opener
Two devices, which I have no pictures for are the wireless hub and the garage door opener. The wireless hub contains an ATmega328, Hope RF module and a usb to serial converter. It’s job was to act as a bridge between the physical devices and the computer. The garage door opener contains a reed switch to determine if the garage door was open and an IR led beam to detect if a car is in the garage.

Web Interface Version 1

Web Interface Version 1 with a Google look and feel

The initial version of my web interface was written in the Google Web Toolkit (GWT) as an experiment after I attended the Google IO conference. If you are not a fan of Javascript and want to get a dynamic web app working fast GWT may be a good choice. The difficulties appear when you need features GWT doesn’t provide like a fancy JS plotting library. It is also complicated to setup your own server so you probably have to use App Engine. The downside of this is technology lock-in.

The chart is the same one used by Google Finance with a few limitations. The biggest being dynamically updating the chart without refresh. For example, sending 2 years of power data with thousands of points will either kill the browser or take forever to load. A better way would be to reduce the resolution and just get the big picture. It’s possible to hack this together, but there is no API call to refresh the data as the user zooms in without reloading the widget, which produces and annoying flicker.

This version featured:

  • Electricity bill based on time of use price
  • Realtime cost per hour
  • Power and temperature history
  • Thermostat controls (far right)
  • Power bar switch and power usage (button that says light)
  • Garage door controls and state info
  • Parking info
Version 2
For the next version I wanted to improve the web interface and provide granular power usage.
Current Meter
To begin I created another board with a Hope RF module, an ATmega168 and this time added six 3.5mm jacks connected the the AVR’s analog input. The current clamps are the same as before except some are rated for 100A and other 15A. I use the 100A for circuits with large appliances like the stove.

Power meter in a Sparkfun box

Wireless power meter with
6 current clamp
Current clamps installed in breaker panel

The current version of this board only supports 6 current clamps so I attached them to the most power hungry appliances: the stove, dryer, ground floor, top floor, fridge and AC.Installation was fairly simple. Just switch off power coming from the mains. Remove a couple of screws to get the front panel off. Attach the clamps to one side of a wire and route the clamp wires through an existing hole in the case. Put the front panel back on and turn on the power.

Web Interface Version 2

To incorporate the new electronics I decided to move to Pyramid and Javascript. Pyramid is the new and improved Pylons project with a bunch of other combined technologies. It’s a bare bones framework that allows you to drop in your own database, template system and UI libraries. Don’t worry it still comes with useful things like user authentication, url traversal and more. If you want a more complete framework try Django or Ruby on Rails. That’s probably why they call it “Rails”.

For serial communication I’m using PySerial, which does the job well. To receive dynamic updates on the web page like the opening of a garage door I’m using SocketIO and Gevent. Gevent provides asynchronous functions, which wait on events in the physical world in this case. This way the server can do other things like take more requests. SocketIO provides socket like functionality to the web browser so when an event does occur on the server side the user can be notified immediately. I highly recommend this tutorial from Alexandre Bourget to learn how to build a website using these tools.

To reproduce Google’s Finance chart I’m using an awesome JS plotting library called Flot. I adding controls for each plot, a plot overview with controls to zoom and server side code to reduce the data points for large ranges. This might be useful for others so I’ll build a sample app and post on Github soon. Checkout the screen caps below.

Web Interface version 2 – breaker panel power historical plots
Web Interface version 2 – realtime power plots
Web interface version 2 – Temperature and humidity plots
(those large spikes are bad data)

Future Plans
The 3 things I would like to improve are the wireless modules, web interface and the hub.

  • Replace Hope RF modules with an ATmega128RFA1 with integrated Zigbee for more functionality and simplicity.
  • Add user accounts to the web interface and clean up the JS code.
  • Develop a hub to connect the devices to the internet. Working on a small Linux board based on the i.MX233.
  • Do another revision of the electronics and iron out the bugs

 

Bluetooth OBD-II Adapter

2c895-obd

Update: Here is the git repo

A couple of weeks ago my Dad and I were trouble shooting the cause of a check engine light on our 2000 Toyota Camry. Using an off the shelf OBD-II reader we got a warning about the EGR system. After trying every test in the book we came up empty and finally had to take it to Toyota. They found a sticky relay that was beginning to fail, which was hard to diagnose because the light would only come on after ~30Km of driving. If we had a way to monitor signals in realtime this problem might have been easier to solve. This is why my OBD-II board was created.

The board is basically the reference schematic for the STN1110, which converts many OBD-II physical layers into RS232. The bottom of the board has a bluetooth module from Deal Extreme. The plan is to connect a smartphone or tablet to the device and log data.

Similar devices exist on the market, but I couldn’t find any cheap ones that have the STN1110. Scantool offers a 3.3cm x 1.5cm module for $70, but that seems a bit expensive for a $10 chip.

Scantool’s module

The STN1110 is supposedly faster than the Elm327, which is good for realtime data logging. It  supports the following protocols:

  • SAE J1850 PWM
  • SAE J1850 VPW
  • SAE J1939
  • ISO 9141-2
  • ISO 14230-4 (KWP 2000)
  • ISO 15765-4 (CAN)
  • ISO 11898 (raw CAN)
My board is 5cm x 5cm, which means the pcb can be manufactured by Seeed Studio‘s for $10. I’ll post the schematics on git hub in the next couple of days.