Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
proc main
set txpace 30
transmit "****^M"
waitfor ">"
transmit "john^M"
transmit "****^M"
waitfor ">"
transmit "logi xxxx^M" ;change these xx's to your login name
waitfor "PASS?"
transmit "xxxx^M" ;change these xx's to your password
call myproc
waitfor ">"
transmit "ld 43^M"
waitquiet 1
transmit "edd^M"
endproc
proc myproc
integer iDay, iMonth, iYear, iMin, iHour, iSec
string sSend
ltimeints $LTIME iYear iMonth iDay iHour iMin iSec
strfmt sSend "STAD %02d %02d %d %02d %02d %02d" iDay iMonth iYear iHour iMin iSec
set txpace 30
transmit "****^M"
waitfor ">"
pause 2
transmit "ld 2^M"
waitfor "."
transmit "TTAD^M"
waitfor "."
transmit sSend
transmit "^M"
waitfor "."
pause 2
transmit "TTAD^M"
pause 2
transmit "****^M"
endproc
proc main
waitfor " " forever
capture on
pause 900
captue off
endproc
ld 22
REQ prt
TYPE ovly
OVLY
SID 722
BKGD 044
PBXH X
TODR 01
DROL 030 034 036 038 043 044 045 060 135 137
MULTI_USER ON
;wait for clock.. sync time to pc, run and capture midnights
proc main
string TimeStr ; String to contain time.
TimeStr = "11:00:59" ; Assign time to time string.
waituntil TimeStr
set txpace 30
transmit "****^M"
waitfor ">"
transmit "john^M"
transmit "****^M"
waitfor ">"
transmit "logi xxxx^M" ;change these xx's to your login name
waitfor "PASS?"
transmit "xxxx^M" ;change these xx's to your password
call myproc
capture on
waitfor ">"
transmit "ld 135^M"
waitquiet 1
transmit "midn^M"
pause 3600
endproc
proc myproc
integer iDay, iMonth, iYear, iMin, iHour, iSec
string sSend
ltimeints $LTIME iYear iMonth iDay iHour iMin iSec
strfmt sSend "STAD %02d %02d %d %02d %02d %02d" iDay iMonth iYear iHour iMin iSec
set txpace 30
transmit "****^M"
waitfor ">"
pause 2
transmit "ld 2^M"
waitfor "."
transmit "TTAD^M"
waitfor "."
transmit sSend
transmit "^M"
waitfor "."
pause 2
transmit "TTAD^M"
pause 2
transmit "****^M"
endproc