Skip to content

Commit

Permalink
feat: Add device-opcua documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Jieke Choo <jiekechoo@yiqisoft.cn>
  • Loading branch information
jiekechoo committed Dec 15, 2023
1 parent d2fa22c commit 89bde9e
Show file tree
Hide file tree
Showing 10 changed files with 453 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Device OPC-UA - API Reference
---

# Device OPC-UA - API Reference

This service inherits the [Common Device Service APIs](../../ApiReference.md) from the SDK.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Device OPC-UA - Configuration
---

# Device OPC-UA - Configuration

OPC-UA Device Service has the following configurations to implement the `OPCUAServer` protocol.

Example of OPCUAServer as shown below:

```yaml
# configuration.yml

OPCUAServer:
DeviceName: SimulationServer
Policy: None
Mode: None
CertFile: ''
KeyFile: ''
Writable:
Resources: 'Counter,Random'
```
| Configuration | Default Value | Description |
| ------------------ | ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| DeviceName | SimmulationServer | Device name of OPC-UA |
| Policy | None | Security Policy of OPC-UA<pre>- None<br>- Basic128Rsa15<br>- Basic256<br>- Basic256Sha256<br>- Aes128Sha256RsaOaep<br>- Aes256Sha256RsaPss</pre> |
| Mode | None | Security Mode of OPC-UA<pre>-None<br>- Sign<br>- SignAndEncrypt</pre> |
| CertFile | none | Cert file of OPC-UA, path to cert.pem |
| KeyFile | none | Key file of OPC-UA, path to private key.pem |
| Writable.Resources | none | Subscritions of OPC-UA |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 89bde9e

Please sign in to comment.