Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Christian
Published © GPL3+

Control/Synchronize Hundreds of Relays at the Same Time

Need to control hundreds of relays with your Arduino, ESP8266, Pi, PC or Mac and activate them simultaneously within < 1 ms time window?

BeginnerFull instructions provided1 hour10,295

Things used in this project

Hardware components

IO Expander
×2
Relay Expander
×2
16 Relay Board
×2
Arduino Nano R3
Arduino Nano R3
×1

Story

Read more

Schematics

IO Expander External Latching

Code

IO Expander External Latching

Arduino
/* IO Expander
 *  
 * Relay Expander External Latching
 *
 */

#include <HardwareSerial9Bit.h>
#include "IOExpander9Bit.h"
#include <avr/wdt.h>

//#define SERIAL_DEBUG
#define MAX_BOARDS    2

#ifdef SERIAL_DEBUG
SoftwareSerial swSerial(8,7);
#endif

void setup()
{
  Serial9Bit.begin(115200, SERIAL_9N1);
  Serial9Bit.write(0);                      // Set IO Expanders to 9-bit
#ifdef SERIAL_DEBUG
  swSerial.begin(115200);
  swSerialEcho = &swSerial;
#endif  
  wdt_enable(WDTO_8S);

  for (uint8_t board = 1; board <= MAX_BOARDS; board++)
    SerialCmdDone(board, "eb1");
   
  SerialCmdDone(1, "g4o1;g10n;el10");     // Setup GPIO for external latch of relays
  SerialCmdDone(2, "g10n;el10");
}

void loop()
{
  static uint16_t i = 0;
  uint8_t r[2];
 
  r[0] = ~(uint8_t)(i >> 8);
  r[1] = ~(uint8_t)i++;
  SerialWriteRelayExpander(1, r, 2);
  delay(50);
  r[0] = ~r[0];                         // Invert all the relays on board 2
  r[1] = ~r[1];
  SerialWriteRelayExpander(2, r, 2);
  delay(50);

  SerialCmdDone(1, "g4o0,1");           // Latch all the relays

  wdt_reset();
}

External Latchi

Credits

Christian
24 projects • 134 followers
Senior Embedded Engineer
Contact

Comments

Please log in or sign up to comment.