Test servo wheel
' {$STAMP BS2}
' {$PBASIC 2.5}
DEBUG "Program running!"
counter······· VAR···· Word
FOR· counter = 1 TO 122
· PULSOUT 12, 650
· PAUSE 20
NEXT
FOR counter = 1 TO 40
· PULSOUT 12, 750
· PAUSE 20
NEXT
FOR counter = 1 TO 122
· PULSOUT 12, 850
· PAUSE 20
NEXT
END
can someone give me the code to use to test servo wheel for BS1, pbasic 1.0, the above code is for BS2 pbasic 2.5
' {$PBASIC 2.5}
DEBUG "Program running!"
counter······· VAR···· Word
FOR· counter = 1 TO 122
· PULSOUT 12, 650
· PAUSE 20
NEXT
FOR counter = 1 TO 40
· PULSOUT 12, 750
· PAUSE 20
NEXT
FOR counter = 1 TO 122
· PULSOUT 12, 850
· PAUSE 20
NEXT
END
can someone give me the code to use to test servo wheel for BS1, pbasic 1.0, the above code is for BS2 pbasic 2.5

Comments
' {$STAMP BS1} ' {$PBASIC 1.0} SYMBOL counter = B0 FOR counter = 1 TO 122 PULSOUT 12, 130 PAUSE 20 NEXT FOR counter = 1 TO 40 PULSOUT 12, 150 PAUSE 20 NEXT FOR counter = 1 TO 122 PULSOUT 12, 170 PAUSE 20 NEXT END▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Tech Support
csavage@parallax.com