Packet Sender
The Free Network Test Utility
Packet Sender is an open source utility to allow sending and receiving TCP and UDP packets. It is available free (no ads / no bundleware) for Windows, Mac, and Linux.
A general purpose USB Relay controller for connection to a PC's USB port using VCP (Virtual COM port). Control devices using your PC. USB Relay controller allows a PC to control a single external device using simple RS232 commands. Relay is fully powered from the USB bus. Free download USB relay board control software.
USB Relay Module is great for controlling your devices through USB without any USB protocol knowledge.
This modules plugs in to your design seamlessly. Individual relay can be controlled by simple commands.
Drivers are available to work with the following operating systems:
Windows Server 2008 R2, Windows 7, Windows 7 x64, Windows Server 2008,
Windows Server 2008 x64, Windows Vista, Windows Vista x64, Windows Server 2003,
Windows Server 2003 x64, Windows XP, Windows XP x64, Windows 2000, Windows ME,
Windows 98, Linux, Mac OS X, Mac OS 9, Mac OS 8, Windows CE.NET (Version 4.2 and greater)
Communication Parameters:
8 Data, 1 Stop, No Parity
Baud rate : 9600
Commands:
OFF command: FF 01 00 (HEX) or 255 1 0 (DEC)
ON command: FF 01 01 (HEX) or 255 1 1 (DEC)
Meta tags: usb channel control, usb circuit relay, usb comand a realy, usb computer controlled relays, usb connection relay, usb connection to relay card, usb control boards, usb control device, usb controled relay, usb controler 12v, usb controllable relay card, usb controlled bnc relay, usb controlled dc relay, usb controlled relay board, usb controlled relay linux, usb controller rs232, usb controller с реле, usb detect relay contact, usb device command relay, usb device control by pc (relay), usb easy relay
Download example file from:
www.info.kmtronic.com/software/USB_Relays/KMtronic-Excel-USB-Relay-Control.zip
Only for 32bit OS!
For 64 bit OS download this example:
www.info.kmtronic.com/software/USB_Relays/KMtronic-Excel-USB-Relay-Control-64bit.zip
Copy 'NETComm.ocx' and 'MSCOMM32.OCX' to C:\Windows\System
Open Command Prompt: Start ->type cmd in search field -> press Enter
Type "regsvr32 C:\Windows\System\NETComm.ocx" and ENTER
Type "regsvr32 C:\Windows\System\MSCOMM32.OCX" and ENTER
Open "KMtronic-Excel-USB-Relay-Example.xls" and "Enable Macros"
Set COM port and type "1" A1 cell
Download example file from:
www.info.kmtronic.com/software/USB_Relays/KMtronic-Excel-USB-Relay-Control.zip
Only for 32bit OS!
For 64 bit OS download this example:
www.info.kmtronic.com/software/USB_Relays/KMtronic-Excel-USB-Relay-Control-64bit.zip
Copy 'NETComm.ocx' and 'MSCOMM32.OCX' to C:\Windows\System
Open Command Prompt: Start ->type cmd in search field -> press Enter
Type "regsvr32 C:\Windows\System\NETComm.ocx" and ENTER
Type "regsvr32 C:\Windows\System\MSCOMM32.OCX" and ENTER
Open "KMtronic-Excel-USB-Relay-Example.xls" and "Enable Macros"
Set COM port and type "1" A1 cell
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then
If IsNumeric(Target) Then
On Error Resume Next
On Error GoTo 0
UserForm1.Show
End If
End If
End Sub
Private Sub UserForm_Activate()
MSComm1.CommPort = Sheets("Sheet1").Range("F1").Value
MSComm1.PortOpen = True
MSComm1.Output = Chr$(255) + Chr$(1) + Chr$(Sheets("Sheet1").Range("A1").Value)
MSComm1.PortOpen = False
Unload UserForm1
End Sub
1. Download the Arduino Software:
http://www.arduino.cc/en/Main/Software
2. Download UIPEthernet Arduino Ethernet library for ENC28J60:
https://github.com/ntruchsess/arduino_uip
https://github.com/ntruchsess/arduino_uip/archive/master.zip
3.
4.
KMtronic DMX adapter
kmtronic-dmx-adapter.html
KMtronic DMX test software
kmtronic-dmx-test-software.html
FreeStyler DMX
freestyler-dmx.html
PC_Dimmer DMX
pcdimmer-dmx.html
Q Light Controller DMX
q-light-controller-dmx.html
Q Light Controller Plus DMX
q-light-controller-plus-dmx.html
DMX Control
dmx-control.html
VenueMagic - DMX Lightning Software
venuemagic-classic.html
Vixen Lightning Software
vixen-lightning.html
Madrix - Led Lightning Control
madrix.html
Control DMX512 devices via Raspberry PI
control-dmx512-devices-via-raspberry-pi.html
C# DMX512 code example
c#-dmx512-code-example.html
DMX512 connectors
dmx512-connectors.html
You can find this on eBay
FILE: Menu.bat
ECHO OFF
:MENU
CLS
ECHO.
ECHO ...............................................
ECHO.
ECHO KMTronic USB Relay Control
ECHO.
ECHO PRESS (1), (2) or (3) to EXIT.
ECHO.
ECHO ...............................................
ECHO.
ECHO (1) - Turn Relay 1 ON
ECHO (2) - Turn Relay 1 OFF
ECHO (3) - EXIT
ECHO.
SET /P M=Type 1, 2, or 3, then press ENTER:
IF %M%==1 GOTO ON
IF %M%==2 GOTO OFF
IF %M%==3 GOTO END
:ON
D:\KMtronic\USBRelay.exe -c:5 -r:1#1
GOTO MENU
:OFF
D:\KMtronic\USBRelay.exe -c:5 -r:1#0
GOTO MENU
:END
D:\KMtronic\USBRelay.exe -c:5 -r:1#0
FILE: 10sec.bat
D:\KMtronic\USBRelay.exe -c:5 -r:1#1
timeout /t 5
D:\KMtronic\USBRelay.exe -c:5 -r:1#0
FILE: OFF.bat
D:\KMtronic\USBRelay.exe -c:5 -r:1#0
FILE: ON.bat
D:\KMtronic\USBRelay.exe -c:5 -r:1#1