We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of only allowing an IP address, allow the use of a FQDN for retrieving data.
Allows more options for PLC addresses.
use PLC.connect("1.location.address.plc.com", 0)... as well as PLC.connect("192.168.1.10", 0)
PLC.connect("1.location.address.plc.com", 0)...
PLC.connect("192.168.1.10", 0)
The text was updated successfully, but these errors were encountered:
patrickjmcd
Successfully merging a pull request may close this issue.
Instead of only allowing an IP address, allow the use of a FQDN for retrieving data.
Current Behavior
Allows more options for PLC addresses.
Expected Behavior
use
PLC.connect("1.location.address.plc.com", 0)...
as well asPLC.connect("192.168.1.10", 0)
The text was updated successfully, but these errors were encountered: