Skip to content

Commit 97273d2

Browse files
committed
typo
1 parent bce566f commit 97273d2

File tree

1 file changed

+9
-8
lines changed
  • content/hardware/07.opta/opta-family/opta/tutorials/18.opta-analog-expansion-plc-ide

1 file changed

+9
-8
lines changed

content/hardware/07.opta/opta-family/opta/tutorials/18.opta-analog-expansion-plc-ide/content.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Each input can be used as:
109109

110110
### Digital Input Mode
111111

112-
To set up an input in digital mode, navigate to **Programmable Channels** under your desired expansion in the left **Resources** menu. Define a variable name, `IN1` in this case and set the **IOType** to `Input - Digital`.
112+
To set up an input in digital mode, navigate to **Programmable Channels** under your desired expansion in the left **Resources** menu. Define a variable name to **I1**, `IN1` in this case and set the **IOType** to `Input - Digital`.
113113

114114
![Digital Input Configuration](assets/plc-ide-8.png)
115115

@@ -135,11 +135,11 @@ For example in a **Ladder Diagram**:
135135

136136
### Analog Voltage Input Mode
137137

138-
To set up an input in voltage mode, navigate to **Programmable Channels** under your desired expansion in the left **Resources** menu. Define a variable name, `IN1` in this case and set the **IOType** to `Input - Voltage ADC`.
138+
To set up an input in voltage mode, navigate to **Programmable Channels** under your desired expansion in the left **Resources** menu. Define a variable name to **I1**, `IN1` in this case and set the **IOType** to `Input - Voltage ADC`.
139139

140140
![Voltage Input Configuration](assets/plc-ide-9.png)
141141

142-
Now you can easily read this input voltage in your program. For example in a **Structured Language** program:
142+
Now you can easily read this input voltage in your program. For example in a **Structured Text** program:
143143

144144
- Open your project main program navigating to the **Project** tab in the left panel, select **Main** in the project tree, and right-click on the **Local variables** window to insert a variable.
145145

@@ -167,11 +167,11 @@ V_IN1 := IN1*10.0/65535.0;
167167

168168
### Analog Current Input Mode
169169

170-
To set up an input in current mode, navigate to **Programmable Channels** under your desired expansion in the left **Resources** menu. Define a variable name, `IN1` in this case and set the **IOType** to `Input - Current ADC`.
170+
To set up an input in current mode, navigate to **Programmable Channels** under your desired expansion in the left **Resources** menu. Define a variable name to **I1**, `IN1` in this case and set the **IOType** to `Input - Current ADC`.
171171

172172
![Current Input Configuration](assets/plc-ide-10.png)
173173

174-
Now you can easily read this input current in your program. For example in a **Structured Language** program:
174+
Now you can easily read this input current in your program. For example in a **Structured Text** program:
175175

176176
- Open your project main program navigating to the **Project** tab in the left panel, select **Main** in the project tree, and right-click on the **Local variables** window to insert a variable.
177177

@@ -199,13 +199,13 @@ I_IN1 := IN1*25.0/65535.0;
199199

200200
### Analog RTD Input Mode
201201

202-
To set up an input in RTD mode for termperature measurement, navigate to **Programmable Channels** under your desired expansion in the left **Resources** menu. Define a variable name, `IN1` in this case and set the **IOType** to `Input - RTD 2 Wires` or `Input - RTD 3 Wires` .
202+
To set up an input in RTD mode for termperature measurement, navigate to **Programmable Channels** under your desired expansion in the left **Resources** menu. Define a variable name to **I1**, `IN1` in this case and set the **IOType** to `Input - RTD 2 Wires` or `Input - RTD 3 Wires` .
203203

204204
![Current Input Configuration](assets/plc-ide-13.png)
205205

206206
***Channels I1 and I2 support 3 Wires RTD and 2 Wires RTD, all other channels only support 2 Wires RTD. If a 3 Wires RTD is defined, you need to set a current in mA for it, see your RTD datasheet.***
207207

208-
Now you can easily read this input resistance in your program. For example in a **Structured Language** program using a **PT100** sensor:
208+
Now you can easily read this input resistance in your program. For example in a **Structured Text** program using a **PT100** sensor:
209209

210210
- Open your project main program navigating to the **Project** tab in the left panel, select **Main** in the project tree, and right-click on the **Local variables** window to insert a variable.
211211

@@ -248,6 +248,7 @@ The Opta™ Analog Expansion has **8x analog programmable outputs** accessible t
248248

249249
### Analog Voltage Output Mode
250250

251+
To set up an output in voltage mode, navigate to **Programmable Channels** under your desired expansion in the left **Resources** menu. Define a variable name to **O1**, `OUT1` in this case and set the **IOType** to `Input - RTD 2 Wires` or `Input - RTD 3 Wires` .
251252

252253
### Analog Current Output Mode
253254

@@ -342,7 +343,7 @@ END_IF;
342343

343344
Compile the project by clicking on the compilation button found in the upper left corner of the IDE. If no errors are shown, upload the program to the Opta™ controller by clicking the upload button highlighted next to it.
344345

345-
![Main program in structured language](assets/plc-ide-12.png)
346+
![Main program in Structured Text](assets/plc-ide-12.png)
346347

347348
You can monitor the project variables in real-time while the project is running by dragging and dropping the desired variables from the left project panel to the **Watch** window:
348349

0 commit comments

Comments
 (0)