Xylem STORM 3 Basic Programming manual Instrukcja Użytkownika Strona 1

Przeglądaj online lub pobierz Instrukcja Użytkownika dla Ekwipunek Xylem STORM 3 Basic Programming manual. Xylem STORM 3 Basic Programming manual User Manual Instrukcja obsługi

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj

Podsumowanie treści

Strona 1 - Storm 3

Storm 3 BASIC PROGRAMMING MANUALV1.0D28 0214

Strona 2 - CONTENTS

8COMMANDS AND FUNCTIONS02 /

Strona 3 - Contents

9Commands and FunctionsThe Storm’s implementation of Basic uses both commands and functions to perform actions and return values, though each is synta

Strona 4 - PROGRAMMING

COMMANDS AND FUNCTIONS10Single-dimensional array: ARRAY myArray(5) FOR i = 1 TO 5 myArray(i) = i * 2 REM Duplicate the number’s value inside the

Strona 5 - Basic Features

11Used with the SWITCH statement to list potential routes. a$ = “Hi” SWITCH a$ CASE “Hello”: response$ = “And Hello to you”

Strona 6 - BASIC PROGRAMMING

12COMMANDS AND FUNCTIONSReturns the number’s ASCII character representation. ASC( ), converting a character to its ASCII numerical value, is the oppos

Strona 7 - Variables, Strings and Arrays

13Commands and FunctionsReturns the cosine value of the given number. var = COS(0) REM sets var to 1 var = COS(PI) REM sets var to -1COS (number)

Strona 8

14COMMANDS AND FUNCTIONS CASE 15: path = 2 BREAK CASE 30: path = 3 BREAK CASE 45: path = 4 BREAK DEFAULT: path

Strona 9 - String Processing

15Commands and FunctionsOptionally used as part of an IF statement to indicate another condition to evaluate. The option is evaluated if all previous

Strona 10 - AND FUNCTIONS

Returns TRUE if the given filenumber has reached the end of the file, FALSE if there is still data available to be read from the current position. OPEN

Strona 11 - ACOS (number)

17Commands and FunctionsA read-only constant containing the number 2.7182818284590452. var = EULER REM sets var to the euler constantEULERReturnseu

Strona 12 - COMMANDS AND FUNCTIONS

Introduction to Basic Programming...2344445556666777Commands and Functions...

Strona 13 - CEIL (number)

18COMMANDS AND FUNCTIONSBegins a loop encompassed by FOR and NEXT with an optional STEP command. The default STEP is 1, meaning each iteration of the

Strona 14

19Commands and FunctionsReturns a specified parameter from a connected SDI-12 sensor. The X following the identier species the SDI-12 sensor’s addre

Strona 15 - DATETIME

Returns a sensor’s most recent raw/unprocessed value. A raw value is the value of a measurement prior to slope, offset, function or digits are applie

Strona 16

21Commands and FunctionsJumps to the specified label or line number within the program. GOTO statements never return back to the point origin and thus

Strona 17

Returns the temperature, in degrees Celsius, of the given number (expecting a 0-5V analog voltage reading) based on the math equation for the WaterLog

Strona 18

23Commands and FunctionsReturns the position, starting at the position given by the third optional parameter (default is 1), of the first occurrence of

Strona 19 - EXP (number)

24COMMANDS AND FUNCTIONSIdentifies a specific location by name. Commands such as GOTO and GOSUB can refer to and send execution to named LABELs. Line

Strona 20

25Commands and FunctionsReturns the common (base-10) logarithm of the given number. The LN function should be used if a natural logarithm is required

Strona 21 - DIGITALX

Returns the given string with all whitespace removed from only the left side. var$ = LTRIM$(“ A1,B2,C3,D4 “) REM sets var$ to “A1,B2,C3,D4 “26COM

Strona 22

27Commands and FunctionsNegates the expression immediately following. The ! operator may alternatively be used. OPEN “SiteID.csv” FOR READING AS #1

Strona 23

1GOSUB...GOTO...

Strona 24

28COMMANDS AND FUNCTIONS ENDIF ON var GOTO critical,moderate,okay LABEL critical SETVALUE DIGITAL1, 1 SETVALUE DIGITAL2, 1 SETVALUE DIGITAL3, 1

Strona 25 - INT (number)

29Commands and FunctionsFile: OPEN “SiteID.csv” FOR APPENDING AS #1 PRINT #1, “A1,B2,C3,D4” CLOSE #1 REM Check if file exists, OPEN #1 FOR READIN

Strona 26

30COMMANDS AND FUNCTIONSA logical operator used between two expressions in conditional statements (e.g. IF, WHILE, etc.). Returns TRUE if the left, r

Strona 27 - LN (number)

31Commands and FunctionsBegins a conditional loop encompassed by REPEAT and UNTIL. The condition is given after the UNTIL statement and while evaluat

Strona 28

Returns the position, starting at 1, of the first occurrence of the second given string within the first given string beginning at the right. If the st

Strona 29 - ON number GOTO

33Commands and FunctionsSets the serial port settings for unopened communication ports. Serial ports are opened with the following defaults: baud rat

Strona 30

Sets a sensor’s function, specied by the Use Function option under the Processing section of the Storm’s Sensor Setup screen. Setting a sensor’s fu

Strona 31 - Listening Port (RS-232 Com):

35Commands and FunctionsReturns the string equivalent of the given number. An optional second parameter string may be specified to declare the format

Strona 32

36COMMANDS AND FUNCTIONSDeclares the beginning of a SWITCH-CASE clause. The single variable given after the SWITCH keyword specifies the character or c

Strona 33 - RIGHT$ (string, number)

37Commands and FunctionsUsed with the IF statement to specify a multi-line IF-THEN clause. var = 40 IF (var >60) THEN var = 60 ELSEIF (var >

Strona 34

BASIC PROGRAMMING01 /2

Strona 35

38COMMANDS AND FUNCTIONSSplits apart a string into an array of strings. The first parameter provides the string to split apart. The second parameter

Strona 36

39Commands and FunctionsMarks the end of a conditional WHILE-WEND loop. END WHILE may also be used instead of WEND. x = 0 WHILE (x < 30) REM B

Strona 37 - STR$ (number, string)

40COMMANDS AND FUNCTIONSMarks the beginning of a conditional WHILE-WEND loop. The condition is specified after the WHILE keyword. As long as the cond

Strona 38

41EXAMPLE PROGRAMS03 /

Strona 39 - TELL (filenumber)

42EXAMPLE PROGRAMSREM Prints out the last line of the log file to the RS-232 Com port REM When set up to run with the sensors, prints out their val

Strona 40

43Example ProgramsREM Determines true wind direction as a bouy rotates,REM based off recorded compass and wind directionGETVALUE SENSOR “Compass”, W

Strona 41 - VAL (string)

REM Respond to simple commands on the RS-232 Com port as a Listener programOPEN “LISTENER” AS #3PRINT #3 “Enter Command > “50REM Ten seconds of ina

Strona 42

45Example ProgramsREM Communicate with and retrieve data from an RS-232 sensorSerialNum$ = “450065”SETPORT 9600,8,None,1,None,0,0OPEN “RS-232 COM” AS

Strona 43 - PROGRAMS

1) The tissue in plants that brings water upward from the roots;2) a leading global water technology company.We’re 12,000 people unied in a common pu

Strona 44 - EXAMPLE PROGRAMS

Basic ProgrammingEach Storm data logger contains a built-in BASIC interpreter (as of firmware version 1.4.2) allowing for more complex procedures and m

Strona 45 - SensorMax.bas

Understanding the available functions and commands as well as the overall operations and flow of Basic is essential to its use within the Storm. Prima

Strona 46

Basic Programming5Basic programming examples provided throughout the manual will follow a specific format. All Basiccommands and functions will be cap

Strona 47 - VR2C.bas

BASIC PROGRAMMINGBasic supports traditional control statements such as GOTO and GOSUB as well as single and multi-line IF-THEN statements and SWITCH-C

Strona 48

Basic Programming7Files stored on the Storm’s local le system can be accessed for reading, writing, and appending of data. The OPEN command allows fi

Komentarze do niniejszej Instrukcji

Brak uwag