IOT Feather controller


The Adafruit Feather is a microcontroller board which is programmed from the Arduino IDE but which offers a great deal more capability than, say, the Uno, in a much smaller package. This Feather MO WiFi has, as the name suggests, built in WiFi and there are a number of plug in boards, or “wings” which can extend its powers. The wing I am using is the Adalogger which has a real time clock with battery backup and an SD card slot.

This package is tiny compared to a Uno arrangement but when you add on the mains voltage relays, mains rated sockets etc. etc. the whole unit has limits as to how small it can be made.

A big advantage of the Feather over the Uno is that it has a very much bigger memory. With my last timer/controller project I found that I was very near the maximum memory usage limit for reliable operation. I did get very occasional crashes and had to install a hardware watchdog timer to reset the Uno should it hang up. I am hoping this will not be necessary with the Feather. Time will tell. Of course the Feather has not been around as long as the Uno so all the bugs may not have been eliminated…


Julian Rogers Home Home IOT Adafruit Feather controller construction Electronics projects

Under construction

My new project is another IOT type controller/timer which I want to build into my heating system to control radiators in the living rooms with motorised valves when these rooms are not in use. This time I am using an alternative to an Arduino.


Circuit diagram

Control system functions

The system will control two independent mains circuits through 10 amp relays with single pole changeover contacts which may be useful in turning valves on and off, for example. Like my previous controller, I am avoiding alpha-numeric status displays with menus etc. Instead there will be two three-way toggle switches to select timed, continuous and off for each circuit which absolutely override micro-controller or network commands together with an advance button for each circuit and a reset button. There will also be a few status LEDs. The Feather has built in WiFi so it will be controlled remotely using UDP, probably from a Raspberry Pi running a Python program as before. There will be provision for sensors etc. using I2C connections.

The switches marked A and B are two pole changeover with centre off.

I built most of the important parts of the circuit on a breadboard to test out the software which was adapted from the previous Arduino-powered unit. Apart from the pin alterations there were differences in the implementation of the real time clock and some minor differences with the UDP library but nothing that couldn’t be solved by several days of staring at the screen, on and off, before, what should have been some obvious mistakes, became apparent!

Having so much extra memory, however, was a delight.

The new software can be found here.

The Adafruit Feather MO is shown above. It’s quite small (the squares are about ½ inch across). The view below (on the breadboard) shows the feather with the Adalogger Wing plugged in (this contains the real time clock and the SD slot).

I then began to design the details of the actual unit. This involves laying out the main components on the table and trying to get them into the most efficient positions with regard to compact packaging and electrical connections. In spite of the fact that the Feather is a fraction of the size of the Arduino, a lot of space is taken up by mains relays, connectors and mains rated plugs and sockets. So in the end I used the same sized box as I had used for the previous version (Hammond 191 x 110 x 61 mm - Maplin N77BQ, Rapid 30-6225) although I did manage to fit a deconstructed 5 volt power supply inside the box. Since I was going to feed mains voltage into the box to be switched by the relays, it seemed sensible to also include the power supply and make the unit entirely self-contained.

Next, I designed two PCBs, one for the main circuit and one for the switches and LEDs which would be attached to the front panel. As is my custom, I included plenty of unassigned pads to allow for additions and the correction of mistakes.

Although the fact that I could adapt parts of the PCB design from my previous controller made the new design to some extent quicker, major differences in pin numbering and designation (and function) between the Arduino and the Feather left plenty of room for confusion and errors (especially as I tend to do this sort of thing late at night!)

The software conversion also gave me similar problems. With hindsight, it might have been easier to have started completely from scratch!


Construction details are next.