I want to be able to set a PAUSE value using a variable at the top of my code so that the same value can be referenced in many places and I only have to change it in one place while experimenting.

FLASH_ON VAR BYTE
FLASH_OFF VAR BYTE


FLASH_ON = 1500
FLASH_OFF = 500

lblLoop:
High LED_0
Pause 1500
Low LED_0
Pause 500

GoTo lblLoop

But this doesn't work, or at least the PAUSE doesn't last as long as I think it should (1.5 seconds the first instance, 0.5 the second).

Can you use variables with PAUSE? If so, are they defined as different types?

What about PWM? I'd like to do the same thing for the Duty & Cycle values.