

⚙️ Elevate your automation game with precision and power!
The SainSmart USB Eight Channel Relay Board is a robust 12V automation solution featuring 8 SPDT relays capable of switching up to 10 Amps each. Designed with enhanced voltage isolation and doubled high current PCB tracks, it ensures safe and reliable operation. Supported by intuitive software and compatible with various control platforms, this relay board is ideal for professionals seeking precise, scalable control in industrial and home automation projects.

































| ASIN | B0093Y89DE |
| Best Sellers Rank | #86,100 in Industrial & Scientific ( See Top 100 in Industrial & Scientific ) #29 in Solid State Relays |
| Brand | SainSmart |
| Brand Name | SainSmart |
| Coil Voltage | 12 Volts |
| Connector Type | Solder |
| Contact Material | Copper |
| Contact Type | Spdt |
| Current Rating | 10 Amps |
| Customer Reviews | 4.1 out of 5 stars 123 Reviews |
| Manufacturer | SainSmart |
| Maximum Switching Current | 10 Amps |
| Maximum Switching Voltage | 12 Volts |
| Minimum Switching Voltage | 11 Volts |
| Mounting Type | Panel Mount |
| Operation Mode | Automatic |
| Wattage | 120 watts |
G**S
works
I purchased this to switch contacts in a data acquisition setup. It works well, all relays function correctly. The 'Relay Manager' program that you can download from the link (and their website) works perfectly. I am having only one issue. I am using LabVIEW to control the board and I cannot get the given (from the download link) library files to open the board. That is, I can run the Open file and get an OK error status in return (it will return various error statuses, depending on the result) but the board will not actually open. I can get the device description, location and handle, but no communication connection. I tried a USB sniffer to check the data going over the port but couldn't seem to find what I was looking for. I contacted the company and was given all the information that I already had. They were very prompt and courteous, but no real help. I never spoke with a programmer, only a secretary or some such. The problem may be with LabVIEW but seems to be some command that I don't know since I can send other commands correctly. I am running Windows 7 and that may be an issue since the library files were written several years ago, although they have stated that they are compatible with this version of Windows and I am not having any other problems. Anyway, my solution (until I can figure out what to do) is to open the board with the 'Relay Manager' and then send commands to the board as I like using my LabVIEW program. I only have to open the board once until I restart my computer and can close the Relay Manager (the initial handshake, whatever it is, remains) and open and close LabVIEW as often as I like with no problems. Now, I had to experiment to find the commands to turn the relays on and off because I could not get their supplied commands to work. I tried and tried and might try some more later but I found what I need through trial and error so it's not an urgent issue right now. As an example, the company said to use FF 01 01 to turn on channel 1. I couldn't get that to work and use 11 instead. So, since the problem seems to be with my programming (although the given D2XX commands don't list anything to cover how to get an initial handshake and I have installed all of the necessary .net files and various drivers) I know that the board works (since their program works well) and I have found the commands to do what I want... I will give it five stars. The board is capable of allowing interface with external switches and will be very useful once I figure out how to get full control over it. edit: For those that are interested, I found the commands for this board (chip). I got a little time and decided to make a program like the one that is provided by the company. I was (once again) trying in vain to get their commands to work and finally just decided to try everything. Well, it turns out that it's pretty simple. After various combinations I found that the on/off state of the switches (relays) are simply represented by binary code from 0 to 255. That is, 00000001 (1 decimal, 01 hex) gives relay #1 on (rest off); 11111111 (255 decimal, FF hex) gives all relays on; 00101101 (45 decimal, 2D hex) gives relays 1, 3, 4, 6 on and the rest off; etc. Also, the communication problem was likewise easily fixed with a little attention to detail. Have fun.
E**G
dof for visual pinball x
set this up for dof with my virtual pinball table. works easily. if you have issues with it disconnecting check the solenoids you are working.
J**X
NOT opto isolated - Doesn't use serial drivers - Doesn't have transient suppression
Seems to work ok, but impossible to get it working on a Mac with Catalina (and maybe Mojave), because Mac OS X doesn't let you manipulate HID devices. Works fine with the supplied Windows executable, but the "send 0xFF, channel, state" approach doesn't work. You can make it work with Linux - libusb, and so forth. A significant problem is that the relay coils are operated off the 12V source - which is sort of fine, but if you have a load that kicks out significant transients (i.e. another relay), you will fry the output side of the relay drivers or worse, your computer's USB interface. It's still recognized by the computer on the USB side, but the relays don't actuate (nor do the tally LEDs illuminate). Still seems to be an OK device, but needs some sophistication in use that's not described in any of the user docs (which are incredibly sketchy.. they don't even tell you which terminal is which on the relay).
J**.
There is no software documentation
The USB_Relay program works OK with this board although rather simple. However, serial port apps such as HTerm cannot communicate, nor any home written version. Surprisingly, if you run the original program first then terminate, other programs work. But, the protocol is not like any instruction found. You would expect the code to look like "xFF x04 x01" to turn on relay 4. That does not work. The board uses a bit-bang method. To turn on relays 1, 5, and 8, you would send b10010001 or x91. Either method is fine but the board cannot be initialized by any published method. It appears that the original app does some initializing by direct USB. Until that happens, then board is useless for home brew code. Follow-up, 6-13-23 From an electrical and functional point of view, the board is superb. The operational software is the present shortcoming. The board appears as a serial port in the device manager but does not respond to any commands. The board has to be in bit-bang mode to operate. There are several ways of dealing with this issue. First, use the software app from the SS support site. It's a stand-alone copy of the Denkovi app and works fine. Second, use their app to open the board then close the app. This leaves the board in the correct mode while still powered on the USB side. Thereafter, you can use a terminal app like HTerm or your own. Finally, I was able to create a more functional app in Lazarus/Pascal by using direct calls to the FTDI DLL library to put the board into the proper mode. Once it's in a usable mode, it's one of the best. I was in contact with SS tech support on many occasions. They did their best to help but the information is just not available. I gave them suggestions for serial communications that is used on other brand boards. This is a 3-byte set sent in binary. The set is 0xFF 0x0n 0x0s where "FF" awakens the board for possible baud value determination, "n" is the relay number(1-8), and "s" is the status condition(1-on/0=off). This is being considered for a future update. The bit-bang scheme will be left intact for backward compatibility. For all my efforts, SS sent me a free board. I'm now working on the idea of using two boards with multiple instances of my app. 73 from KF4JU
S**N
Great board for automation
This board works great. I was able to use LabView to configure the board to do bit bang mode. From there, you just write a byte of data to it. Each bit in that byte of data represent a relay. 1 turn it on and 0 to turn it off. All the FTDI functions VIs are supplied by the FTDI chip Vendor, and two examples are given. Overall, the board is nicely built, very rugged. It works as advertised.
R**T
Be prepared to waste hours for no result
The very sparse documentation is confusing, so you'll find you get more information by reading reviews from the people who have the board working. Those people are very helpful, but even with their solutions the board did not work for me. Even the "Board Manager" software supplied by SainSmart fails to recognize this board and control it.
B**L
Excellent for Amateur Radio Automatic Band Switching
Excellent product and works perfectly with my Flex 6300 for automatic band switching control on the Dunestar 600! This is a high quality PCB and very well constructed. Just ordered another to build an automatic remote coax switching unit. No way that I could even buy the components to build my own at this crazy low price!
J**O
Works as advertised! What a bargain!
I am paralyzed and am using this to get eyegaze control of the adjustments on my hospital bed. Wiring is easy, my teen-age sons did it. Finding the software to control it was NOT easy!! Once you find and install it, it does work. I'm still trying to figure out how to use the timer function, but I expect that to work, too. GUI relay control for $30? You can't beat this board!
Trustpilot
5 days ago
1 week ago