Edit:

This seems to work

Code:
main:
       PulsIn signal, 1, pulse ' reads signal from receiver

       IF (pulse >= 100) AND (pulse <= 160) Then
          Low GPIO.0 ' turns LED off
       Else
            High GPIO.0 ' turns LED on
       EndIF

       GoTo main
seems the range between >= and <= was the issue