Skip to content
New issue

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

add json format of device #88

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "How to add devices"
weight: 2
bookCollapseSection: true
---

Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: "Cobolt S0501"
weight: 2
---

# How to add a cobolt S0501 in tree.json

Attribute ***name*** can be choosen

```json
{
"ref": "cobolt.s0501",
"name": "Cobolt S0501",
"settings": {
"serial_baudrate": 9600,
"usb_vendor": "9692",
"usb_model": "6"
}
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: "Korad ka3005"
weight: 2
---

# How to add a korad ka3005 in tree.json

Attribute ***name*** can be choosen

```json
{
"ref": "korad.ka3005",
"name": "Korad KA3005",
"settings": {
"serial_baudrate": 9600,
"usb_vendor": "1046",
"usb_model": "20497"
}
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: "Voxpower inhibitor"
weight: 2
---

# How to add a voxpower inhibitor in tree.json

Attribute ***name*** can be choosen

```json
{
"ref": "panduza.voxpower_inhibiter",
"name": "my_voxpower_inhibiter",
"settings": {
"serial_baudrate": 9600,
"usb_vendor": "9025",
"usb_model": "0067"
}
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "How to add fake devices"
weight: 2
bookCollapseSection: true
---

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: "Fake BLC (Bench Laser Control)"
weight: 2
---

# How to add a fake laser in tree.json

Attribute ***name*** can be choosen

```json
{
"ref": "panduza.fake_laser",
"name": "my_laser"
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: "Fake BPC (Bench Power Channel)"
weight: 2
---

# How to add a fake BPC (Bench Power Channel) in tree.json

Attribute ***name*** can be choosen

```json
{
"ref": "panduza.fake_power_supply",
"name": "my_bpc"
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: "Fake powermeter"
weight: 2
---

# How to add a fake powermeter in tree.json

Attribute ***name*** can be choosen

```json
{
"ref": "panduza.fake_powermeter",
"name": "my_powermeter"
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: "Fake thermometer"
weight: 2
---

# How to add a fake thermometer in tree.json

Attribute ***name*** can be choosen

```json
{
"ref": "panduza.fake_thermometer",
"name": "my_thermometer"
}
```