XOUT - BASIC Stamp Command Reference
Page 336
•
BASIC Stamp Programming Manual 2.0b
•
www.parallaxinc.com
first turning it completely off, then sending 10 cycles of the Dim
command. This may seem odd, but it follows the peculiar logic of the X-10
system.
Demo Program (X10.bs2)
' This program--really two program fragments--demonstrates the syntax and use of the XOUT
' command. XOUT works like pressing the buttons on an X-10 control box; first you press one
' of 16 keys to identify the unit you want to control, then you press the key for the action you
' want that unit to take (turn ON, OFF, Bright, or Dim). There are also two group-action keys,
' Lights ON and All OFF. Lights ON turns all lamp modules on without affecting appliance
' modules. All OFF turns off all modules, both lamp and appliance types. Connect the BASIC
' Stamp to a power-line interface as shown in the XOUT command description in the manual.
'{$STAMP BS2} 'STAMP directive (specifies a BS2)
Zpin CON 0 ' Zero-crossing-detect pin from TW523 or PL513.
Mpin CON 1 ' Modulation-control pin to TW523 or PL513.
HouseA CON 0 ' House code: 0=A, 1=B... 15=P
Unit1 CON 0 ' Unit code: 0=1, 1=2... 15=16
Unit2 CON 1 ' Unit code 1=2.
' This first example turns a standard (appliance or non-dimmer lamp) module ON, then OFF.
' Note that once the Unit code is sent, it need not be repeated--subsequent instructions are
' understood to be addressed to that unit.
XOUT Mpin, Zpin, [HouseA\Unit1\2, HouseA\UnitOn]' Talk to Unit 1. Turn it ON.
PAUSE 1000 ' Wait a second.
XOUT Mpin, Zpin, [HouseA\UnitOff] ' Tell it to turn OFF.
' The next example talks to a lamp module using the dimmer feature. Dimmers go from full
' ON to dimmed OFF in 19 steps. Because dimming is relative to the current state of the
' lamp, the only guaranteed way to set a predefined brightness level is to turn the dimmer fully
' OFF, then ON, then dim to the desired level.
XOUT Mpin, Zpin, [HouseA\Unit2] ' Talk to Unit 2.
' This example shows the use of the optional Cycles argument. Here we Dim for 10 cycles.
XOUT Mpin, Zpin, [HouseA\UnitOff\2, HouseA\Dim\10]
STOP
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.
Содержание BASIC Stamp 2e
Страница 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...