Help, please. I’ve search and search but can not fine an answer. Can the PicoCalc MMBasic use the funtion keys to select different Sub Routines? If so, what are the Asc numbers for the keys? Thank you! - Jim
Just write a little program to print the ASC numbers for the keys:
do
a$=inkey$i=asc(a$) if i = 27 then end print iloop
1 Like
The “hardware_includes.h” files says this:
// the values returned by the function keys
#define F1 0x91
#define F2 0x92
#define F3 0x93
#define F4 0x94
#define F5 0x95
#define F6 0x96
#define F7 0x97
#define F8 0x98
#define F9 0x99
#define F10 0x9a
#define F11 0x9b
#define F12 0x9c
See Appendix H of the MMBasic manual for a complete list of special keys in hex and decimal.