Hello all
I am new to Oshonsoft and to this forum. I am running into a very basic problem with the following simple program:
Dim x As Word
x = 65535
AllDigital
Lcdinit 3
WaitMs 100
loop:
Lcdout "I am counting!"
Lcdcmdout LcdLine2Home
Lcdout #x
x = x - 1
WaitMs 250
Lcdcmdout LcdClear
Goto loop
When I select an 16F88 it runs without any problems. When I select a 16f690 nothing shoes up on the screen. In both cases I am initializing the LCD tool with the default from the code.
What am I doing wrong here ?
Jacques
I am new to Oshonsoft and to this forum. I am running into a very basic problem with the following simple program:
Dim x As Word
x = 65535
AllDigital
Lcdinit 3
WaitMs 100
loop:
Lcdout "I am counting!"
Lcdcmdout LcdLine2Home
Lcdout #x
x = x - 1
WaitMs 250
Lcdcmdout LcdClear
Goto loop
When I select an 16F88 it runs without any problems. When I select a 16f690 nothing shoes up on the screen. In both cases I am initializing the LCD tool with the default from the code.
What am I doing wrong here ?


Jacques