HIGH   (preprocessor)
 
Syntax

HIGH  expression
Description


  ****  done by #define  HIGH(x)  OUT(x)=1  *****

HIGH will set the pin corresponding to expression to a positive value (3.3V) and then set it to an output.

HIGH and LOW have been added for PBASIC compatablity.

For the ARMmite, ARMmite PRO, ARMexpress and ARMexpress LITE these pin numbers correspond to the pin numbers shown in the Hardware Section. The numbering was assigned by physical location on the board. So DIR, HIGH, IN, INPUT, IO, LOW, OUT and OUTPUT use these physical pin assignments. But P0(pin) will use the bit assigned by NXP. Going forward new board designs will maintain the bit assignment from NXP for all keywords.

For the ARMweb, DINkit, SuperPRO, PROplus and PROstart these pin numbers correspond only to the Port 0 assigned by NXP, for instance DIR 3 corresponds to P0.3

For port pins after Port 0, use the P1 .. P4 commands .

Example

SUB DIRS (x)           ' similar to PBASIC keyword
  DIM i AS INTEGER
 
  FOR i = 0 to 15
    if x and (1 << i) then OUTPUT(i) else INPUT(i)
  NEXT i
END SUB

main:

DIRS (&H00FF)      '  set pins 0 to 7 to output

FOR I=0 TO 7
  WAIT (1000)
  HIGH(I)                 ' set each pin HIGH one after the other every second
NEXT I

Differences from other BASICs

See also