5: BASIC Stamp Command Reference – INPUT
BASIC Stamp Programming Manual 2.0c
•
www.parallaxinc.com
•
Page 155
INPUT
BS1 BS2 BS2e BS2sx BS2p
INPUT
Pin
Function
Make the specified pin an input.
•
Pin
is a variable/constant/expression (0 – 15) that specifies which
I/O pin to set to input mode.
Explanation
There are several ways to make a pin an input. When a program begins,
all of the BASIC Stamp's pins are inputs. Commands that rely on input
pins, like PULSIN and SERIN, automatically change the specified pin to
input. Writing 0s to particular bits of the variable DIRS makes the
corresponding pins inputs. And then there’s the INPUT command.
When a pin is an input, your program can check its state by reading the
corresponding INS variable (PINS on the BS1). For example:
INPUT 4
Hold:
IF IN4 = 0 THEN Hold ' Stay here until P4 is 1.
The code above will read the state of P4 as set by external circuitry. If
nothing is connected to P4, it will alternate between states (1 or 0)
apparently at random.
What happens if your program writes to the OUTS bit (PINS bit on the
BS1) of a pin that is set up as an input? The value is stored in OUTS (PINS
on the BS1), but has no effect on the outside world. If the pin is changed to
output, the last value written to the corresponding OUTS bit (or PINS bit
on the BS1) will appear on the pin. The demo program shows how this
works.
Demo Program (INPUT.bas)
' This program demonstrates how the input/output direction of a pin is determined by
' the corresponding bit of DIRS. It also shows that the state of the pin itself (as
' reflected by the corresponding bit of PINS) is determined by the outside world when
' the pin is an input, and by the corresponding bit of PINS when it's an output. To
' set up the demo, connect a 10k resistor from +5V to P7 on the BASIC Stamp. The
' resistor to +5V puts a high (1) on the pin when it's an input. The BASIC Stamp can
' override this state by writing a low (0) to bit 7 of OUTS and changing the pin to output.
1
2
e
2
sx
2
p
2
1
1
NOTE: Expressions are not allowed
as arguments on the BS1. The
range of the Pin argument on the
BS1 is 0 – 7.
Содержание BASIC Stamp 1
Страница 1: ...BASIC Stamp Programming Manual Version 2 0c...
Страница 30: ...Introduction to the BASIC Stamps Page 28 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 34: ...Quick Start Guide Page 32 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 90: ...BUTTON BASIC Stamp Command Reference Page 88 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 118: ...END BASIC Stamp Command Reference Page 116 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 128: ...FREQOUT BASIC Stamp Command Reference Page 126 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 196: ...NAP BASIC Stamp Command Reference Page 194 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 206: ...OWIN BASIC Stamp Command Reference Page 204 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 214: ...OWOUT BASIC Stamp Command Reference Page 212 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 216: ...PAUSE BASIC Stamp Command Reference Page 214 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 226: ...POLLMODE BASIC Stamp Command Reference Page 224 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 232: ...POLLOUT BASIC Stamp Command Reference Page 230 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 236: ...POLLRUN BASIC Stamp Command Reference Page 234 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 240: ...POLLWAIT BASIC Stamp Command Reference Page 238 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 262: ...RCTIME BASIC Stamp Command Reference Page 260 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 274: ...RUN BASIC Stamp Command Reference Page 272 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 310: ...SEROUT BASIC Stamp Command Reference Page 308 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 324: ...STOP BASIC Stamp Command Reference Page 322 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 340: ...ASCII Chart Page 338 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 342: ...Reserved Words Page 340 BASIC Stamp Programming Manual 2 0b www parallaxinc com...
Страница 346: ...Conversion Formatters Page 344 BASIC Stamp Programming Manual 2 0b www parallaxinc com...