EasyManua.ls Logo

IDEC WindO/I-NV4 User Manual

IDEC WindO/I-NV4
1738 pages
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Page #1192 background imageLoading...
Page #1192 background image
5 Script Coding Examples
20-36 WindO/I-NV4 User’s Manual
Script
Operation description
This example converts a decimal value to octal using a while statement.
By repeating the process to divide the original decimal data by 8 and converting each digit to octal in a while
statement, the conversion is implemented up to four digits.
The unconverted decimal value is stored in LDR100. After the script is executed, the converted octal value is stored in
LDR200.
Example 5.1.10 Decimal to octal conversion using a while statement
// Convert a decimal value to octal
// -
For example, convert 10 (Dec) to 12 (Oct), 16 (Dec) to 20 (Oct)
// - Convert a value to octal up to 4 digits max
@1 = 0; // while counter
@2 = [LDR 100]; // gets original data
@3 = 1; // decimal base
@4 = 0; // calculation results
// repeat four times
while (@1 < 4)
{
// Extract 1st octal digit from original data. Store working result in @10.
@10 = @2 % 8;
// Convert the extracted results to decimal and add to results
@4 = @4 + (@10 * @3);
// Increase the decimal base by one digit
@3 = @3 * 10;
// Reduce the original data by one digit
@2 = @2 / 8;
// If @2 is 0, terminate the while statement
if (0 == @2)
{
break;
}
// Increment while counter by 1
@1 = @1 + 1;
}
// Store the calculation result in LDR200
[LDR 200] = @4;

Table of Contents

Question and Answer IconNeed help?

Do you have a question about the IDEC WindO/I-NV4 and is the answer not in the manual?

IDEC WindO/I-NV4 Specifications

General IconGeneral
Touch PanelResistive film
Backlight Life50, 000 hours
Communication PortsRS-232C, RS-422/485
Power Supply24V DC
Operating Temperature0 to 50°C (32 to 122°F)
Storage Temperature-20 to 60°C (-4 to 140°F)
Vibration Resistance10 to 57 Hz, 0.075 mm amplitude, 57 to 150 Hz, 9.8 m/s² acceleration
Shock Resistance147m/s² (15G), 3 times in each direction of X, Y, and Z axes
Protection RatingIP65 (front panel)