SHIFTIN - BASIC Stamp Command Reference
Page 312
•
BASIC Stamp Programming Manual 2.0b
•
www.parallaxinc.com
Demo Program (SHIFTIN.bs2)
' This program uses the SHIFTIN instruction to interface with the ADC0831 8-bit
' analog-to-digital converter from National Semiconductor.
'{$STAMP BS2} 'STAMP directive (specifies a BS2)
ADres VAR BYTE 'A-to-D result: one byte.
CS CON 0 'Chip select is pin 0.
AData CON 1 'ADC data output is pin 1.
CLK CON 2 'Clock is pin 2.
HIGH CS 'Deselect ADC to start.
' In the loop below, just three lines of code are required to read the ADC0831. The
' SHIFTIN command does most of the work. The mode argument in the SHIFTIN command
' specifies msb or lsb-first and whether to sample data before or after the clock.
' In this case, we chose msb-first, post-clock. The ADC0831 precedes its data output
' with a dummy bit, which we take care of by specifying 9 bits of data instead of 8.
Again:
LOW CS 'Activate the ADC0831.
SHIFTIN AData, CLK, MSBPOST, [ADres\9] 'Shift in the data.
HIGH CS 'Deactivate ADC0831.
DEBUG ? ADres 'Show us the conversion result.
PAUSE 1000 'Wait a second.
GOTO Again 'Do it again.
2
e
2
sx
2
p
2
NOTE: This is written for the BS2
but can be used for the BS2e,
BS2sx and BS2p also. Locate the
proper source code file or modify
the STAMP directive before
downloading to the BS2e, BS2sx or
BS2p.
Summary of Contents for BASIC Stamp 2e
Page 1: ...BASIC Stamp Programming Manual Version 2 0c...
Page 34: ...Quick Start Guide Page 32 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Page 340: ...ASCII Chart Page 338 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Page 342: ...Reserved Words Page 340 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Page 346: ...Conversion Formatters Page 344 BASIC Stamp Programming Manual 2 0b www parallaxinc com...