relay-controller.ino
is Arduino firmware for a computer interface for up to three latching relays.
The protocol really ought to be replaced, perhaps with a standard industrial automation protocol, but I haven't gotten around to researching what is suitably simple enough. For now, it is this:
115200 baud serial over the standard Arduino serial/USB interface.
Each message consists of ASCII characters and is terminated by ";". The defined messages are:
A1;
(or variants usingB
,C
, or2
) — Set (host to interface) or report (interface to host) relay position. On set, the changed or unchanged state is always reported in response.AU;
(orB
,C
) — Reports relay is disconnected or indicator is faulty (both lines inactive).AF;
(orB
,C
) — Reports indicator is faulty (both lines active).BOOTING;
— Sent first on firmware startup.READY;
— Sent last on firmware startup. The current states of the relays will have been reported before this message.INCOMPLETE_COMMAND;
— Sent when a;
is seen without the expected preceding characters.BAD_CHARACTER;
— Sent when a character not part of any command is seen.BAD_DRIVE;
— Internal error.
The firmware is configured so that the six Arduino pins 8-13 are active-high relay coil driver outputs and pins 2-7 are active-low indicator inputs (reporting the physical state of the relay). (Note that this means that the Arduino bootloader will trigger the third relay unless it is modified to not flash pin 13 on startup.)
This pinout is compatible with a Velleman KA05 / VMA05 I/O Shield for Arduino. This would seem to be overkill in the sense that it contains not just driver transistors but non-latching relays, but it means that the latching relays may be additionally controlled with manual switches: the shield's relays' NC pins go to ground, NO to the manual switches, and COM to the latching relays. Visible LED indicators mounted next to the switches can be connected in parallel on the inputs.
The following mechanical/electrical details are completely independent of the firmware and exist only because I might as well write them down somewhere.
I chose to attach the relays using DE-9 connectors with the following pinout (which is symmetric so that accidental which-side-am-I-looking-at mirror-reversal will only make the control backwards, not connect the wrong things together):
- NC
- Indicator contact for position 1 (to Arduino digital input)
- Indicator common (to Arduino +5V rail)
- Indicator contact for position 2 (to Arduino digital input)
- NC
- Coil for position 1, positive (relay coil voltage supply)
- Coil for position 1, negative (to coil driver)
- Coil for position 2, negative (to coil driver)
- Coil for position 2, positive (relay coil voltage supply)
Given the use of the KA05 shield, it is feasible but not trivial to do all of the wiring with no additional PCBs or breadboard. For a pure computer interface, the only junction that is needed is the unswitched positive side of the coils all going to supply. Adding manual switches requires their connections to ground. Adding indicator LEDs requires supply voltage and resistors, and paralleling them with the digital inputs.
If the latching relays are 12 V, then the entire system can be powered from 12 V. If they are higher voltage, then a 12 V supply is still needed due to the KA05 shield's 12 V relays. A more customized relay driver circuit would allow using a single supply again.
I also included a fuse on the +12V input (immediately after taking it from the Arduino Vin pin. (The Arduino has a polyfuse which protects only its +5V.) This protects against any wiring fault in the external relay connections.
Copyright 2016-2017 Kevin Reid kpreid@switchb.org
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.