GET - BASIC Stamp Command Reference
contains the current program slot that will be used for the READ and
WRITE commands. See the demo program below for an example of use.
Demo Program (GETPUT1.bsx)
' This example demonstrates the use of the GET and PUT commands. First, location 63
' is read using GET to display the currently running program number. Then a set of
' values are written (PUT) into locations 0 to 9. Afterwards, program number 1 is run.
' This program is a BS2sx project consisting of GETPUT1.bsx and GETPUT2.bsx. See the
' BASIC Stamp Project section in the manual for more information.
'{$STAMP BS2sx, GETPUT2.BSX}
Value
VAR
BYTE
Index
VAR
BYTE
GET 63, Value
DEBUG "Program #",DEC Value, CR
FOR Index = 0 TO 9
Value = (Index + 3) * 8
PUT Index, Value
DEBUG " Writing: ", DEC2 Value, " to location: ", DEC2 Index, CR
NEXT
RUN 1
Demo Program (GETPUT2.bsx)
' This example demonstrates the use of the GET and PUT commands. First, location 63
' is read using GET to display the currently running program number. Then a set of
' values are read (GET) from locations 0 to 9 and displayed on the screen for verification.
' This program is a BS2sx project consisting of GETPUT1.bsx and GETPUT2.bsx. See the
' BASIC Stamp Project section in the manual for more information.
'{$STAMP BS2sx}
Value
VAR
BYTE
Index
VAR
BYTE
GET 63, Value
DEBUG CR, "Program #",DEC Value, CR
FOR Index = 0 TO 9
GET Index, Value
DEBUG " Reading: ", DEC2 Value, " from location: ", DEC2 Index, CR
NEXT
STOP
Page 128 • BASIC Stamp Programming Manual 2.0b • www.parallaxinc.com
'STAMP directive (specifies a BS2sx and
'a second program, GETPUT2.BSX)
'STAMP directive (specifies a BS2sx)
2
2
2
e
sx
p
NOTE: This is written for the BS2sx
but can be used for the BS2e, and
BS2p also. Locate the proper
source code file or modify the
STAMP directive before
downloading to the BS2e, or BS2p.
2
2
2
e
sx
p
NOTE: This is written for the BS2sx
but can be used for the BS2e, and
BS2p also. Locate the proper
source code file or modify the
STAMP directive before
downloading to the BS2e, or BS2p.
Need help?
Do you have a question about the BASIC Stamp 2e and is the answer not in the manual?