NOP

Do nothing.

Syntax

nop [count]

Parameters

count
  • Decimal number from 2 to 100, tells how many times next command or block will be retried.

Example

sleeps 300 ; Set sleeps = 300 ms
 
cycle:  ; Define Label
 
on      ; Switch ON all
off     ; Switch OFF all
on      ; Switch ON all
nop     ; Do nothing
nop     ; Do nothing
off     ; Switch OFF all, and wait for 3 times
nop 2   ; Do nothing for 2 times
 
goto cycle
exon.gif