- Learn how to use the Go language
- Lean how to use the gopcua library
- Learn how to use nats.go library
-
Run a basic OPC-UA server
-
Run a basic OPC-UA client that will read a value from the server
-
Run a basic OPC-UA client that will write a value to the server
sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt update
sudo apt install golang-go- Build the server:
go build ./cmd/server- Build the client:
go build ./cmd/client- Run the server:
./server- Run the client:
./client