3-8 Automating Measurements
Operator Interaction
User-Defined BEGIN Key Menu
The labels required are:
User_begin
User_pause
User_key1
User_key2
User_key3
User_key4
User_key5
User_key6
User_key7
NOTE Your program must contain all of these labels, even if you
are not using all of the softkeys.
A default program is created automatically when there
is no IBASIC program installed. In the default program, the third
softkey is defined to be the function, the fourth softkey
prompts the user for a title, and also enables the clock. The default
program is listed next. You may edit this program to change the
functions you need. Once you have edited the program, be sure to save
the program to memory for later recall.
1 ! The following line is required. DO NOT REMOVE!
2 User_begin: ASSIGN @Hp8714 TO 800 ![User Begin] Program
3!
4 ! To Modify:
5 ! Use [IBASIC][EDIT] or [IBASIC][Key Record]
6!
7!
8 ! Declare storage for variables.
9 DIM Name$[60],Str1$[60],Str2$[60],Str3$[60]
10 !
11 ! Clear the softkey labels
12 OUTPUT @Hp8714;"DISP:MENU2:KEY8 '';*WAI"
13 !
14 ! Re-define softkey labels here.
15 OUTPUT @Hp8714;"DISP:MENU2:KEY1 '*';*WAI"
16 OUTPUT @Hp8714;"DISP:MENU2:KEY2 '*';*WAI"
17 OUTPUT @Hp8714;"DISP:MENU2:KEY3 'Mkr -> Max';*WAI"
18 OUTPUT @Hp8714;"DISP:MENU2:KEY4 'Title and Clock';*WAI"
19 OUTPUT @Hp8714;"DISP:MENU2:KEY5 '*';*WAI"
20 OUTPUT @Hp8714;"DISP:MENU2:KEY6 '*';*WAI"
21 OUTPUT @Hp8714;"DISP:MENU2:KEY7 '*';*WAI"
22 !
23 !The following 2 lines are required. DO NOT REMOVE!