should this code work to get the parallax to display a string?




'===============================
'' pic16f88

INCLUDE "modedefs.bas"


'DEFINE OSC 10 ' 4MHz doesn't work try others

TRISB = %00000000 ' PORTB all outputs
ADCON1 = %00000111 ' Disable A/D converter
ANSEL = %00000000 ' all analog pins to digital

'================================

PinOut VAR PORTB.5 ' Tx on RB5
Led3On VAR PORTB.3 ' turn on LED if Tx

'================================

BAUD con 16780 ' 2400 Baud, inverted, NoParity: conservative for testing

'================================
PinOut = 0 ' set to a norm state
PAUSE 100 ' a little wait time

HIGH PinOut
HIGH Led3On

Pause 5000 ' LCD start up delay
SEROUT2 PinOut, BAUD,["STR-1 012345678",13,10]
LOW Led3On
PAUSE 5000

'================================

Loop:

HIGH Led3On
SEROUT2 PinOut, BAUD, ["STR-2 012345678",13,10]
PAUSE 5000
LOW Led3On
SEROUT2 PinOut, BAUD, ["STR-3 012345678",13,10]
goto Loop

END