Hi Steve Matson,

i had the same issue last night.

The trick is very simple !

You used:
If Pin0 = 1 AND Pin1 = 1 Then outpintwo

But you need to do:

If (Pin0 = 1) AND (Pin1 = 1) Then outpintwo

The () make all the difference

Regards