How can I send ASCII text strings to a device on my network using TCP/IP?

0 votes
asked by
edited by

I would like to send timed/scheduled line of ASCII text strings to a device on my network.

1 Answer

0 votes
answered by (100k points)
edited by

Sending ASCII strings to a device on your network using TCP/IP involves knowing some knowledge about C++/Visual Basic because there isn't a compiled tool to do this. You will first need to understand what socket stream the device uses and what ports are open for the communication and then code your application using System.Net.Sockets.TcpClient, System.IO.BinaryReader/BinaryWriter and System.Text.Encoding.ASCII as libraries. The way you implement this code is only up to you and its only based on your needs with the device.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register
...