{
"cells": [
{
"cell_type": "markdown",
"id": "83c0808f",
"metadata": {},
"source": [
"# đ Lecture d'un fichier EDS (Electronic Data Sheet)\n",
"Ce notebook lit un fichier `.eds` de type CANopen et en affiche les sections sous forme de tableau."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "5fbccbec",
"metadata": {
"tags": [
"remove-input"
]
},
"outputs": [
{
"data": {
"text/plain": [
"['data/IF-AB-CANO_EDS_PSI9000_ELR9000_EL9000B_PSB9000_KE220+.eds']"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Import des bibliothĂšques\n",
"import configparser\n",
"from IPython.display import display, HTML\n",
"\n",
"# Chemin vers le fichier EDS\n",
"eds_path = 'data/IF-AB-CANO_EDS_PSI9000_ELR9000_EL9000B_PSB9000_KE220+.eds'\n",
"\n",
"# Lecture du fichier EDS\n",
"config = configparser.ConfigParser()\n",
"config.read(eds_path, encoding='utf-8')"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "3845594f",
"metadata": {
"tags": [
"remove-input"
]
},
"outputs": [
{
"data": {
"text/html": [
"
[FileInfo]
Clé | Valeur |
---|
createdby | |
modifiedby | |
description | EDS file for the IF-AB-CANO for series EL 9000 B, PSI 9000, ELR 9000 and PSB 9000 |
creationtime | 04:53PM |
creationdate | 09-13-2017 |
modificationtime | 04:53PM |
modificationdate | 09-13-2017 |
filename | IF-AB-CANO_EDS_PSI9000_ELR9000_EL9000B_PSB9000_KE220+.eds |
fileversion | 1 |
filerevision | 1 |
edsversion | 4.0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[DeviceInfo]
Clé | Valeur |
---|
vendorname | |
vendornumber | 0x0000001B |
productname | IF-AB-CANO |
productnumber | 35400100 |
revisionnumber | 0x00000001 |
ordercode | 0 |
baudrate_10 | 1 |
baudrate_20 | 1 |
baudrate_50 | 1 |
baudrate_125 | 1 |
baudrate_250 | 1 |
baudrate_500 | 1 |
baudrate_800 | 1 |
baudrate_1000 | 1 |
simplebootupmaster | 0 |
simplebootupslave | 1 |
granularity | 8 |
dynamicchannelssupported | 0 |
compactpdo | 0 |
groupmessaging | 0 |
nrofrxpdo | 0 |
nroftxpdo | 0 |
lss_supported | 1 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[DummyUsage]
Clé | Valeur |
---|
dummy0001 | 0 |
dummy0002 | 1 |
dummy0003 | 1 |
dummy0004 | 1 |
dummy0005 | 1 |
dummy0006 | 1 |
dummy0007 | 1 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[Comments]
Clé | Valeur |
---|
lines | 3 |
line1 | --------------------------------------------------- |
line2 | This is the EDS file for Anybus-CC CANopen module |
line3 | --------------------------------------------------- |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[MandatoryObjects]
Clé | Valeur |
---|
supportedobjects | 3 |
1 | 0x1000 |
2 | 0x1001 |
3 | 0x1018 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1000]
Clé | Valeur |
---|
parametername | HMS Device Type |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | 0x00010192 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1001]
Clé | Valeur |
---|
parametername | Error Register |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 0x00 |
pdomapping | 0 |
lowlimit | 0x00 |
highlimit | 0xFF |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1018]
Clé | Valeur |
---|
parametername | Identity Object |
objecttype | 0x9 |
subnumber | 5 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1018sub0]
Clé | Valeur |
---|
parametername | Number Of Entries |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 0x04 |
pdomapping | 0 |
lowlimit | 0x01 |
highlimit | 0x04 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1018sub1]
Clé | Valeur |
---|
parametername | Vendor ID |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | 0x0000001B |
pdomapping | 0 |
lowlimit | 0x0000001B |
highlimit | 0x0000001B |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1018sub2]
Clé | Valeur |
---|
parametername | Product Code |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | 35400100 |
pdomapping | 0 |
lowlimit | 0x0000000C |
highlimit | 0x0000000C |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1018sub3]
Clé | Valeur |
---|
parametername | Revision Number |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | 0x00000001 |
pdomapping | 0 |
lowlimit | 0x00000001 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1018sub4]
Clé | Valeur |
---|
parametername | Serial Number |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[OptionalObjects]
Clé | Valeur |
---|
supportedobjects | 12 |
1 | 0x1003 |
2 | 0x1005 |
3 | 0x1008 |
4 | 0x100A |
5 | 0x100C |
6 | 0x100D |
7 | 0x1010 |
8 | 0x1011 |
9 | 0x1014 |
10 | 0x1015 |
11 | 0x1016 |
12 | 0x1017 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1003]
Clé | Valeur |
---|
parametername | Pre Defined Error Field |
objecttype | 0x8 |
subnumber | 7 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1003sub0]
Clé | Valeur |
---|
parametername | Number Of Errors |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | rw |
defaultvalue | 0x0000 |
pdomapping | 0 |
highlimit | 0x0006 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1003sub1]
Clé | Valeur |
---|
parametername | Error Field #1 |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | 0x00000000 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1003sub2]
Clé | Valeur |
---|
parametername | Error Field #2 |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | 0x00000000 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1003sub3]
Clé | Valeur |
---|
parametername | Error Field #3 |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | 0x00000000 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1003sub4]
Clé | Valeur |
---|
parametername | Error Field #4 |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | 0x00000000 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1003sub5]
Clé | Valeur |
---|
parametername | Error Field #5 |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | 0x00000000 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1003sub6]
Clé | Valeur |
---|
parametername | Error Field reserved for node internal errors |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | 0x00000000 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1005]
Clé | Valeur |
---|
parametername | COB-ID Sync Message |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
defaultvalue | 0x00000080 |
pdomapping | 0 |
lowlimit | 0x00000001 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1008]
Clé | Valeur |
---|
parametername | Manufacturer Device Name |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | const |
defaultvalue | Anybus-CC DP CANopen |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[100A]
Clé | Valeur |
---|
parametername | Manufacturer Software Version |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | const |
defaultvalue | 1.02 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[100C]
Clé | Valeur |
---|
parametername | Guard Time |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
defaultvalue | 0 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[100D]
Clé | Valeur |
---|
parametername | Life Time Factor |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | rw |
defaultvalue | 0 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1010]
Clé | Valeur |
---|
parametername | Store Parameters |
objecttype | 0x8 |
subnumber | 3 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1010sub0]
Clé | Valeur |
---|
parametername | Largest subindex supported |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 2 |
pdomapping | 0 |
lowlimit | 2 |
highlimit | 2 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1010sub1]
Clé | Valeur |
---|
parametername | Store all parameters |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1010sub2]
Clé | Valeur |
---|
parametername | Store communication parameters |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1011]
Clé | Valeur |
---|
parametername | Restore Default Parameters |
objecttype | 0x8 |
subnumber | 4 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1011sub0]
Clé | Valeur |
---|
parametername | Largest subindex supported |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 4 |
pdomapping | 0 |
lowlimit | 4 |
highlimit | 4 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1011sub1]
Clé | Valeur |
---|
parametername | Restore all default parameters |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1011sub2]
Clé | Valeur |
---|
parametername | Restore communication default parameters |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1011sub4]
Clé | Valeur |
---|
parametername | Restore application default parameters |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1014]
Clé | Valeur |
---|
parametername | COB-ID Emergency Message |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
defaultvalue | $NODEID+0x80 |
pdomapping | 0 |
lowlimit | 0x00000001 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1015]
Clé | Valeur |
---|
parametername | Inhibit Time EMCY |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
defaultvalue | 0 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1016]
Clé | Valeur |
---|
parametername | Consumer Heartbeat Time |
objecttype | 0x8 |
subnumber | 2 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1016sub0]
Clé | Valeur |
---|
parametername | Number Of Entries |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 1 |
pdomapping | 0 |
lowlimit | 1 |
highlimit | 1 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1016sub1]
Clé | Valeur |
---|
parametername | Consumer Heartbeat Time |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
defaultvalue | 0x00000000 |
pdomapping | 0 |
highlimit | 0x007FFFFF |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[1017]
Clé | Valeur |
---|
parametername | Producer Heartbeat Time |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
defaultvalue | 0 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[ManufacturerObjects]
Clé | Valeur |
---|
supportedobjects | 459 |
1 | 0x2001 |
2 | 0x2002 |
3 | 0x2016 |
4 | 0x202A |
5 | 0x203E |
6 | 0x2052 |
7 | 0x2066 |
8 | 0x207A |
9 | 0x207C |
10 | 0x207E |
11 | 0x2080 |
12 | 0x2082 |
13 | 0x2084 |
14 | 0x2098 |
15 | 0x20AC |
16 | 0x20C0 |
17 | 0x20D4 |
18 | 0x20E8 |
19 | 0x2193 |
20 | 0x2196 |
21 | 0x2198 |
22 | 0x2199 |
23 | 0x219A |
24 | 0x219B |
25 | 0x219C |
26 | 0x21A1 |
27 | 0x21A2 |
28 | 0x21A3 |
29 | 0x21A7 |
30 | 0x21AA |
31 | 0x21AB |
32 | 0x21F3 |
33 | 0x21F4 |
34 | 0x21F5 |
35 | 0x21F6 |
36 | 0x21F7 |
37 | 0x21F8 |
38 | 0x21F9 |
39 | 0x21FA |
40 | 0x21FC |
41 | 0x21FD |
42 | 0x21FE |
43 | 0x2209 |
44 | 0x220A |
45 | 0x220B |
46 | 0x220C |
47 | 0x220D |
48 | 0x220E |
49 | 0x220F |
50 | 0x2227 |
51 | 0x222A |
52 | 0x222D |
53 | 0x2230 |
54 | 0x2231 |
55 | 0x2232 |
56 | 0x2233 |
57 | 0x2234 |
58 | 0x2235 |
59 | 0x2236 |
60 | 0x2237 |
61 | 0x2238 |
62 | 0x2239 |
63 | 0x223A |
64 | 0x223B |
65 | 0x223C |
66 | 0x223D |
67 | 0x223E |
68 | 0x223F |
69 | 0x2240 |
70 | 0x2241 |
71 | 0x228B |
72 | 0x228C |
73 | 0x228D |
74 | 0x228E |
75 | 0x228F |
76 | 0x2290 |
77 | 0x2291 |
78 | 0x2293 |
79 | 0x2295 |
80 | 0x2297 |
81 | 0x2353 |
82 | 0x2354 |
83 | 0x2355 |
84 | 0x2357 |
85 | 0x2358 |
86 | 0x235C |
87 | 0x235D |
88 | 0x235E |
89 | 0x2385 |
90 | 0x2395 |
91 | 0x23A5 |
92 | 0x23B5 |
93 | 0x23C5 |
94 | 0x23D5 |
95 | 0x23E5 |
96 | 0x23F5 |
97 | 0x2405 |
98 | 0x2415 |
99 | 0x2425 |
100 | 0x2435 |
101 | 0x2445 |
102 | 0x2455 |
103 | 0x2465 |
104 | 0x2475 |
105 | 0x2485 |
106 | 0x2495 |
107 | 0x24A5 |
108 | 0x24B5 |
109 | 0x24C5 |
110 | 0x24D5 |
111 | 0x24E5 |
112 | 0x24F5 |
113 | 0x2505 |
114 | 0x2515 |
115 | 0x2525 |
116 | 0x2535 |
117 | 0x2545 |
118 | 0x2555 |
119 | 0x2565 |
120 | 0x2575 |
121 | 0x2585 |
122 | 0x2595 |
123 | 0x25A5 |
124 | 0x25B5 |
125 | 0x25C5 |
126 | 0x25D5 |
127 | 0x25E5 |
128 | 0x25F5 |
129 | 0x2605 |
130 | 0x2615 |
131 | 0x2625 |
132 | 0x2635 |
133 | 0x2645 |
134 | 0x2655 |
135 | 0x2665 |
136 | 0x2675 |
137 | 0x2685 |
138 | 0x2695 |
139 | 0x26A5 |
140 | 0x26B5 |
141 | 0x26C5 |
142 | 0x26D5 |
143 | 0x26E5 |
144 | 0x26F5 |
145 | 0x2705 |
146 | 0x2715 |
147 | 0x2725 |
148 | 0x2735 |
149 | 0x2745 |
150 | 0x2755 |
151 | 0x2765 |
152 | 0x2775 |
153 | 0x2785 |
154 | 0x2795 |
155 | 0x27A5 |
156 | 0x27B5 |
157 | 0x27C5 |
158 | 0x27D5 |
159 | 0x27E5 |
160 | 0x27F5 |
161 | 0x2805 |
162 | 0x2815 |
163 | 0x2825 |
164 | 0x2835 |
165 | 0x2845 |
166 | 0x2855 |
167 | 0x2865 |
168 | 0x2875 |
169 | 0x2885 |
170 | 0x2895 |
171 | 0x28A5 |
172 | 0x28B5 |
173 | 0x28C5 |
174 | 0x28D5 |
175 | 0x28E5 |
176 | 0x28F5 |
177 | 0x2905 |
178 | 0x2915 |
179 | 0x2925 |
180 | 0x2935 |
181 | 0x2945 |
182 | 0x2955 |
183 | 0x2965 |
184 | 0x2975 |
185 | 0x2985 |
186 | 0x2995 |
187 | 0x29A5 |
188 | 0x29B5 |
189 | 0x2A29 |
190 | 0x2A39 |
191 | 0x2A49 |
192 | 0x2A59 |
193 | 0x2A69 |
194 | 0x2A79 |
195 | 0x2A89 |
196 | 0x2A99 |
197 | 0x2AA9 |
198 | 0x2AB9 |
199 | 0x2AC9 |
200 | 0x2AD9 |
201 | 0x2AE9 |
202 | 0x2AF9 |
203 | 0x2B09 |
204 | 0x2B19 |
205 | 0x2B29 |
206 | 0x2B39 |
207 | 0x2B49 |
208 | 0x2B59 |
209 | 0x2B69 |
210 | 0x2B79 |
211 | 0x2B89 |
212 | 0x2B99 |
213 | 0x2BA9 |
214 | 0x2BB9 |
215 | 0x2BC9 |
216 | 0x2BD9 |
217 | 0x2BE9 |
218 | 0x2BF9 |
219 | 0x2C09 |
220 | 0x2C19 |
221 | 0x2C29 |
222 | 0x2C39 |
223 | 0x2C49 |
224 | 0x2C59 |
225 | 0x2C69 |
226 | 0x2C79 |
227 | 0x2C89 |
228 | 0x2C99 |
229 | 0x2CA9 |
230 | 0x2CB9 |
231 | 0x2CC9 |
232 | 0x2CD9 |
233 | 0x2CE9 |
234 | 0x2CF9 |
235 | 0x2D09 |
236 | 0x2D19 |
237 | 0x2D29 |
238 | 0x2D39 |
239 | 0x2D49 |
240 | 0x2D59 |
241 | 0x2D69 |
242 | 0x2D79 |
243 | 0x2D89 |
244 | 0x2D99 |
245 | 0x2DA9 |
246 | 0x2DB9 |
247 | 0x2DC9 |
248 | 0x2DD9 |
249 | 0x2DE9 |
250 | 0x2DF9 |
251 | 0x2E09 |
252 | 0x2E19 |
253 | 0x2E29 |
254 | 0x2E39 |
255 | 0x2E49 |
256 | 0x2E59 |
257 | 0x2E69 |
258 | 0x2E79 |
259 | 0x2E89 |
260 | 0x2E99 |
261 | 0x2EA9 |
262 | 0x2EB9 |
263 | 0x2EC9 |
264 | 0x2ED9 |
265 | 0x2EE9 |
266 | 0x2EF9 |
267 | 0x2F09 |
268 | 0x2F19 |
269 | 0x2F29 |
270 | 0x2F39 |
271 | 0x2F49 |
272 | 0x2F59 |
273 | 0x2F69 |
274 | 0x2F79 |
275 | 0x2F89 |
276 | 0x2F99 |
277 | 0x2FA9 |
278 | 0x2FB9 |
279 | 0x2FC9 |
280 | 0x2FD9 |
281 | 0x2FE9 |
282 | 0x2FF9 |
283 | 0x3009 |
284 | 0x3019 |
285 | 0x3029 |
286 | 0x3039 |
287 | 0x3049 |
288 | 0x3059 |
289 | 0x3069 |
290 | 0x3079 |
291 | 0x3089 |
292 | 0x3099 |
293 | 0x30A9 |
294 | 0x30B9 |
295 | 0x30C9 |
296 | 0x30D9 |
297 | 0x30E9 |
298 | 0x30F9 |
299 | 0x3109 |
300 | 0x3119 |
301 | 0x3129 |
302 | 0x3139 |
303 | 0x3149 |
304 | 0x3159 |
305 | 0x3169 |
306 | 0x3179 |
307 | 0x3189 |
308 | 0x3199 |
309 | 0x31A9 |
310 | 0x31B9 |
311 | 0x31C9 |
312 | 0x31D9 |
313 | 0x31E9 |
314 | 0x31F9 |
315 | 0x3209 |
316 | 0x3219 |
317 | 0x3229 |
318 | 0x3239 |
319 | 0x3249 |
320 | 0x3259 |
321 | 0x3269 |
322 | 0x3279 |
323 | 0x3289 |
324 | 0x3299 |
325 | 0x32A9 |
326 | 0x32B9 |
327 | 0x32C9 |
328 | 0x32D9 |
329 | 0x32E9 |
330 | 0x32F9 |
331 | 0x3309 |
332 | 0x3319 |
333 | 0x3329 |
334 | 0x3339 |
335 | 0x3349 |
336 | 0x3359 |
337 | 0x3369 |
338 | 0x3379 |
339 | 0x3389 |
340 | 0x3399 |
341 | 0x33A9 |
342 | 0x33B9 |
343 | 0x33C9 |
344 | 0x33D9 |
345 | 0x33E9 |
346 | 0x33F9 |
347 | 0x3409 |
348 | 0x3419 |
349 | 0x3429 |
350 | 0x3439 |
351 | 0x3449 |
352 | 0x3459 |
353 | 0x3469 |
354 | 0x3479 |
355 | 0x3489 |
356 | 0x3499 |
357 | 0x34A9 |
358 | 0x34B9 |
359 | 0x34C9 |
360 | 0x34D9 |
361 | 0x34E9 |
362 | 0x34F9 |
363 | 0x3509 |
364 | 0x3519 |
365 | 0x3529 |
366 | 0x3539 |
367 | 0x3549 |
368 | 0x3559 |
369 | 0x3569 |
370 | 0x3579 |
371 | 0x3589 |
372 | 0x3599 |
373 | 0x35A9 |
374 | 0x35B9 |
375 | 0x35C9 |
376 | 0x35D9 |
377 | 0x35E9 |
378 | 0x35F9 |
379 | 0x3609 |
380 | 0x3619 |
381 | 0x3629 |
382 | 0x3639 |
383 | 0x3649 |
384 | 0x3659 |
385 | 0x3669 |
386 | 0x3679 |
387 | 0x3689 |
388 | 0x3699 |
389 | 0x36A9 |
390 | 0x36B9 |
391 | 0x36C9 |
392 | 0x36D9 |
393 | 0x36E9 |
394 | 0x36F9 |
395 | 0x3709 |
396 | 0x3719 |
397 | 0x3729 |
398 | 0x3739 |
399 | 0x3749 |
400 | 0x3759 |
401 | 0x3769 |
402 | 0x3779 |
403 | 0x3789 |
404 | 0x3799 |
405 | 0x37A9 |
406 | 0x37B9 |
407 | 0x37C9 |
408 | 0x37D9 |
409 | 0x37E9 |
410 | 0x37F9 |
411 | 0x3809 |
412 | 0x3819 |
413 | 0x3829 |
414 | 0x3839 |
415 | 0x3849 |
416 | 0x3859 |
417 | 0x3869 |
418 | 0x3879 |
419 | 0x3889 |
420 | 0x3899 |
421 | 0x38A9 |
422 | 0x38B9 |
423 | 0x38C9 |
424 | 0x38D9 |
425 | 0x38E9 |
426 | 0x38F9 |
427 | 0x3909 |
428 | 0x3919 |
429 | 0x3929 |
430 | 0x3939 |
431 | 0x3949 |
432 | 0x3959 |
433 | 0x3969 |
434 | 0x3979 |
435 | 0x3989 |
436 | 0x3999 |
437 | 0x39A9 |
438 | 0x39B9 |
439 | 0x39C9 |
440 | 0x39D9 |
441 | 0x39E9 |
442 | 0x39F9 |
443 | 0x3A09 |
444 | 0x3A19 |
445 | 0x4329 |
446 | 0x432A |
447 | 0x432B |
448 | 0x432C |
449 | 0x432D |
450 | 0x432E |
451 | 0x432F |
452 | 0x4330 |
453 | 0x4331 |
454 | 0x4332 |
455 | 0x4726 |
456 | 0x473A |
457 | 0x473C |
458 | 0x480D |
459 | 0x49CD |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2001]
Clé | Valeur |
---|
parametername | Device class |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2002]
Clé | Valeur |
---|
parametername | Device type |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2016]
Clé | Valeur |
---|
parametername | Manufacturer |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[202A]
Clé | Valeur |
---|
parametername | Manufacturer address |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[203E]
Clé | Valeur |
---|
parametername | Manufacturer ZIP code |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2052]
Clé | Valeur |
---|
parametername | Manufacturer phone number |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2066]
Clé | Valeur |
---|
parametername | Manufacturer website |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[207A]
Clé | Valeur |
---|
parametername | Nominal voltage |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[207C]
Clé | Valeur |
---|
parametername | Nominal current |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[207E]
Clé | Valeur |
---|
parametername | Nominal power |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2080]
Clé | Valeur |
---|
parametername | Max. Internal resistance |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2082]
Clé | Valeur |
---|
parametername | Min. Internal resistance (ELR only) |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2084]
Clé | Valeur |
---|
parametername | Article no. |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2098]
Clé | Valeur |
---|
parametername | Serial no. |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[20AC]
Clé | Valeur |
---|
parametername | User Text |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[20C0]
Clé | Valeur |
---|
parametername | Firmware version (KE) |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[20D4]
Clé | Valeur |
---|
parametername | Firmware version (HMI) |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[20E8]
Clé | Valeur |
---|
parametername | Firmware version (DR) |
objecttype | 0x7 |
datatype | 0x0009 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2193]
Clé | Valeur |
---|
parametername | Remote mode |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2196]
Clé | Valeur |
---|
parametername | Standby on/off (input or output) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2198]
Clé | Valeur |
---|
parametername | Condition of DC input after power fail alarm |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2199]
Clé | Valeur |
---|
parametername | Condition of output/input after powering the device |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[219A]
Clé | Valeur |
---|
parametername | Operation mode (UIP/UIR) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[219B]
Clé | Valeur |
---|
parametername | System reset (warm start) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | wo |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[219C]
Clé | Valeur |
---|
parametername | Acknowledge alarms |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | wo |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21A1]
Clé | Valeur |
---|
parametername | Reference voltage of analog interface (Vref) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21A2]
Clé | Valeur |
---|
parametername | Analog interface: REM-SB level |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21A3]
Clé | Valeur |
---|
parametername | Analog interface: REM-SB action |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21A7]
Clé | Valeur |
---|
parametername | Controller speed (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21AA]
Clé | Valeur |
---|
parametername | DC terminal after remote |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21AB]
Clé | Valeur |
---|
parametername | Function generator XY: Select PV mode |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21F3]
Clé | Valeur |
---|
parametername | Set power value (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21F4]
Clé | Valeur |
---|
parametername | Set current value (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21F5]
Clé | Valeur |
---|
parametername | Set voltage value |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21F6]
Clé | Valeur |
---|
parametername | Set current value |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21F7]
Clé | Valeur |
---|
parametername | Set power value |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21F8]
Clé | Valeur |
---|
parametername | Set resistance value |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21F9]
Clé | Valeur |
---|
parametername | Set resistance value (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21FA]
Clé | Valeur |
---|
parametername | Device State |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21FC]
Clé | Valeur |
---|
parametername | Actual voltage |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21FD]
Clé | Valeur |
---|
parametername | Actual current |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[21FE]
Clé | Valeur |
---|
parametername | Actual power |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2209]
Clé | Valeur |
---|
parametername | Count of OV alarms since power up |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[220A]
Clé | Valeur |
---|
parametername | Count of OC alarms since power up |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[220B]
Clé | Valeur |
---|
parametername | Count of OP alarms since power up |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[220C]
Clé | Valeur |
---|
parametername | Count of OT alarms since power up |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[220D]
Clé | Valeur |
---|
parametername | Count of PF alarms since power up |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[220E]
Clé | Valeur |
---|
parametername | Count of OC alarms since power up (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[220F]
Clé | Valeur |
---|
parametername | Count of OP alarms since power up (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2227]
Clé | Valeur |
---|
parametername | Overvoltage protection threshold (OVP) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[222A]
Clé | Valeur |
---|
parametername | Overcurrent protection threshold (OCP) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[222D]
Clé | Valeur |
---|
parametername | Overpower protection threshold (OPP) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2230]
Clé | Valeur |
---|
parametername | Undervoltage detection (UVD) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2231]
Clé | Valeur |
---|
parametername | Adjustable UVD notification |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2232]
Clé | Valeur |
---|
parametername | Overvoltage detection (OVD) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2233]
Clé | Valeur |
---|
parametername | Adjustable OVD notification |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2234]
Clé | Valeur |
---|
parametername | Undercurrent detection (UCD) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2235]
Clé | Valeur |
---|
parametername | Adjustable UCD notification |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2236]
Clé | Valeur |
---|
parametername | Overcurrent detection (OCD) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2237]
Clé | Valeur |
---|
parametername | Adjustable OCD notification |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2238]
Clé | Valeur |
---|
parametername | Overpower detection (OPD) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2239]
Clé | Valeur |
---|
parametername | Adjustable OPD notification |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[223A]
Clé | Valeur |
---|
parametername | Overcurrent protection threshold (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[223B]
Clé | Valeur |
---|
parametername | Overpower protection threshold (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[223C]
Clé | Valeur |
---|
parametername | Undercurrent detection (UCD) (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[223D]
Clé | Valeur |
---|
parametername | Adjustable UCD notification (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[223E]
Clé | Valeur |
---|
parametername | Overcurrent detection (OCD) (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[223F]
Clé | Valeur |
---|
parametername | Adjustable OCD notification (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2240]
Clé | Valeur |
---|
parametername | Overpower detection (OPD) (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2241]
Clé | Valeur |
---|
parametername | Adjustable OPD notification (sink) |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[228B]
Clé | Valeur |
---|
parametername | Master-slave: Link mode |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[228C]
Clé | Valeur |
---|
parametername | Master-slave: Address |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[228D]
Clé | Valeur |
---|
parametername | Master-slave: Link mode on Share bus |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[228E]
Clé | Valeur |
---|
parametername | Master-slave: Enable MS |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[228F]
Clé | Valeur |
---|
parametername | Master-slave: Init MS |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | wo |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2290]
Clé | Valeur |
---|
parametername | Master-slave: Condition |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2291]
Clé | Valeur |
---|
parametername | Master-slave: Total voltage |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2293]
Clé | Valeur |
---|
parametername | Master-slave: Total current |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2295]
Clé | Valeur |
---|
parametername | Master-slave: Total power |
objecttype | 0x7 |
datatype | 0x0007 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2297]
Clé | Valeur |
---|
parametername | Master-slave: Number of slaves |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | ro |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2353]
Clé | Valeur |
---|
parametername | Function generator Arbitary: Start/stop |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2354]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Select U |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2355]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Select I |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2357]
Clé | Valeur |
---|
parametername | Function generator XY: Select U-I mode |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2358]
Clé | Valeur |
---|
parametername | Function generator XY: Select I-U mode |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[235C]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Start sequence |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[235D]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: End sequence |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[235E]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Sequence cycles |
objecttype | 0x7 |
datatype | 0x0006 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2385]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 1 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2385sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2385sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2385sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2385sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2385sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2385sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2385sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2385sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2385sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2395]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 2 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2395sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2395sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2395sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2395sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2395sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2395sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2395sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2395sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2395sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23A5]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 3 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23A5sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23A5sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23A5sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23A5sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23A5sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23A5sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23A5sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23A5sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23A5sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23B5]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 4 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23B5sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23B5sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23B5sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23B5sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23B5sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23B5sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23B5sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23B5sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23B5sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23C5]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 5 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23C5sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23C5sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23C5sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23C5sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23C5sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23C5sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23C5sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23C5sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23C5sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23D5]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 6 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23D5sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23D5sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23D5sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23D5sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23D5sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23D5sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23D5sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23D5sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23D5sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23E5]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 7 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23E5sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23E5sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23E5sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23E5sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23E5sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23E5sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23E5sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23E5sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23E5sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23F5]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 8 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23F5sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23F5sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23F5sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23F5sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23F5sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23F5sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23F5sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23F5sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[23F5sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2405]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 9 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2405sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2405sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2405sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2405sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2405sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2405sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2405sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2405sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2405sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2415]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 10 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2415sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2415sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2415sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2415sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2415sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2415sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2415sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2415sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2415sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2425]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 11 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2425sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2425sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2425sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2425sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2425sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2425sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2425sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2425sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2425sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2435]
Clé | Valeur |
---|
parametername | Function generator Arbitrary: Setup for sequence 12 |
objecttype | 0x8 |
subnumber | 9 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2435sub0]
Clé | Valeur |
---|
parametername | NrOfObjects |
objecttype | 0x7 |
datatype | 0x0005 |
accesstype | ro |
defaultvalue | 8 |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2435sub1]
Clé | Valeur |
---|
parametername | AC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2435sub2]
Clé | Valeur |
---|
parametername | AC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2435sub3]
Clé | Valeur |
---|
parametername | Frequence start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2435sub4]
Clé | Valeur |
---|
parametername | Frequence stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2435sub5]
Clé | Valeur |
---|
parametername | Angle |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2435sub6]
Clé | Valeur |
---|
parametername | DC start |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2435sub7]
Clé | Valeur |
---|
parametername | DC stop |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2435sub8]
Clé | Valeur |
---|
parametername | Sequence time |
objecttype | 0x7 |
datatype | 0x0008 |
accesstype | rw |
pdomapping | 0 |
"
],
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"[2445]
|