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
After successful connection via MODBUS with GO, I try to get a variable value:
// Prepare a read-request readRequest, err := connection.ReadRequestBuilder(). AddTagAddress("tag1", "holding-register:1:REAL"). Build() fmt.Printf("err.Error(): %v\n", err.Error())
, however I am receiving this output:
{"level":"debug","time":"2024-10-30T13:55:25+01:00","message":"No quantity supplied, assuming 1"} panic: runtime error: invalid memory address or nil pointer dereference [signal 0xc0000005 code=0x0 addr=0x18 pc=0x4f7397]
V1.23.2
The text was updated successfully, but these errors were encountered:
usually there should be a stack trace on a panic attached. Check if you can attach that too
Sorry, something went wrong.
I was missing to put the "err" inside an if statement, like this: if err != nil { fmt.Printf("err.Error(): %v\n", err.Error()) } , solved thanks
if err != nil { fmt.Printf("err.Error(): %v\n", err.Error()) }
No branches or pull requests
What happened?
After successful connection via MODBUS with GO, I try to get a variable value:
, however I am receiving this output:
Version
V1.23.2
Programming Languages
Protocols
The text was updated successfully, but these errors were encountered: