Example

  LOW Pin

Function
Make the specified Pin an output and low (0).

Explanation
The LOW instruction makes the specified Pin an output, and then sets its value to 0 (Vss). For example:

  LOW RA.3

Does the same thing as:

  OUTPUT RA.3
  RA.3 = 0

Using the LOW instruction is more convenient in this case.


Related instructions: HIGH, OUTPUT, and TOGGLE