Example programs – Xylem STORM 3 Basic Programming manual User Manual
Page 44

42
EXAMPLE PROGRAMS
REM 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 values every scan
LogFile$ = “SiteID.csv”
OPEN LogFile$ FOR READING AS #1
SEEK #1, 0, “END”
fileSize = TELL(#1)
filePosition = TELL(#1)
fileError = 0
foundEnd = 0
IF (filePosition < 150) THEN
REM The first search should begin at the start
SEEK #1, 0, “BEGINNING”
ELSE
REM Note that this is presuming that each log line is less than 150 characters long
SEEK #1, -150, “END”
END IF
WHILE (foundEnd == 0 and fileError == 0)
LINE INPUT #1, LastLogLine$
filePosition = TELL(#1)
IF (filePosition == fileSize) THEN
foundEnd = 1
END IF
WEND
CLOSE #1
SETPORT 9600, 8, none, 1, none, 50, 0
OPEN “RS-232 Com” AS #2
PRINT #2 LastLogLine$, “\r\n”
CLOSE #2
AutoPrint.bas
The following programs are provided for reference when creating and using the Basic interpreter.
- H-2191 (57 pages)
- H-223 (9 pages)
- H-264 (16 pages)
- H-310 (40 pages)
- H-312 (38 pages)
- H-3301 (24 pages)
- H-3342 (30 pages)
- H-335 (32 pages)
- H-339 (21 pages)
- H-340-CalKit (6 pages)
- H-340 (12 pages)
- H-340SDI (32 pages)
- H-3521 (57 pages)
- H-3531 FlashLite (76 pages)
- H-3551 (42 pages)
- H-3553 (36 pages)
- H-375 04101 WIND MONITOR-JR (18 pages)
- H-4161 (36 pages)
- H-4191 (21 pages)
- H-424MS V1.0 (25 pages)
- H-424MS V1.1 (22 pages)
- H-4271 (22 pages)
- H-4280 (34 pages)
- H-4400 (7 pages)
- H-4401 (6 pages)
- H-5223 (107 pages)
- STORM 3 UPGRADE (4 pages)
- System 5000 BASIC Manual (54 pages)
- System 5000 User Manual (136 pages)
- DH-21 (112 pages)
- BrazedPlate Heat Exchangers (4 pages)
- Heat Exchangers (8 pages)
- GL500 MULTICHANNEL DATA LOGGER (32 pages)
- 4046 ANALOG TO SDI-12 CONVERTER (7 pages)
- 4015 SDI-12 TO ANALOG CONVERTER (5 pages)
- iRIS-CAM Wastewater Security Camera (11 pages)
- SDI-12 Data Logger iRIS 220, iRIS 320, iRIS 350, iRIS 150, iRIS 300 (111 pages)
- iRIS 150 GPRS DATALOGGERS (53 pages)
- iCE3 GPRS Variant (29 pages)
- GL500-2-1 Data Logger (32 pages)
- 3101 CONDUCTIVITY CONTROLLER (11 pages)
- 3675 pH CONTROLLER (9 pages)
- 378 TEMPERATURE CONTROLLER (9 pages)
- Expert 1400 (16 pages)
- Expert 700 (8 pages)