Hello Jeremy
I dont have those instructions and i've closed my dropbox account.
But i think i can help you.
Open a terminal on Raspberry:
sudo apt update
sudo apt upgrade -y
sudo apt install ser2net -y
with your serial-usb adapter attached try find out wath port is with:
sudo dmesg | grep tty* or ls /dev/tty*
next let'sedit the configuration file of ser2net:
sudo nano /etc/ser2net.conf
the only line that should be uncommented is like this:
4000:raw:120/dev/ttyUSB0:9600 8DATABITS NONE 1STOPBIT
Where:
4000 - is a tcp port on the raspberry not blocked for a firewall and also the same port to use on the PC.
raw - is the format of the data (other options could be for example telnet).
120 - is te timeout in seconds.
ttyUSB0 - is an example and must be that port you find above.
9600 - is the baud rate, must adjust to you PLC.
8DATABITS - the length of each block of information.
NONE - is the parity, others optios = ODD or EVEN
1STOPBIT - how the information block ends
To make ser2net autorun every time the raspberry is turned on, do this:
sudo nano /etc/rc.local
Add the following above exit 0
/usr/local/sbin/ser2net -n -c /etc/ser2net.conf
Now on the PC you need:
com0com
Serial-TCP or RealTerm (
https://sourceforge.net/projects/realterm/)
The configuration of Serial-TCP or RealTerm is very simple, just match the tcp port. Both, Raspberry ant th PC must be on the same network or bridged by a gateway.
The connection to AHM is made by com0com.
PLC <=> ser2net <=====> Serial-TCP <=> com0com <=> AHMI
When i published in the forum, in 2015, i have used to connect a Micrologix 1000 via a TP-Link Wi-fi AP to a PC over 400m (1,312ft). But before i have tryed also with a Micrologix 1200, with DF1 and Modbus protocols and worked well without flaws.
Any questions?