Hello TV FREAK,
Your problem could be because of a bug in the C-Control I v2.0 system.
The very first byte will not be sent over the UART because of this bug.
Try a PUT 0 in the top of your software like I listed below, maybe this will work.
Greetings,
Drifter2006
Code:
'--------------------------------------------------------------------------------
'-------------------------ZUWEISUNG DER EIN- UND AUSGAENGE ----------------------
'--------------------------------------------------------------------------------
define led port[1]
'--------------------------------------------------------------------------------
'-------------------------ZAHLEN KONVERTIERUNG FUER ANZEIGE ---------------------
'--------------------------------------------------------------------------------
define zahl word
'---------------------------------------------------------------------------------
'----------------------------HAUPTROUTINE -------------------------------------
'---------------------------------------------------------------------------------
put 0 '<-NEEDED BECAUSE OF BUG IN C-CONTROL I V2.0'
#hauptroutine
for zahl = 10 to 50 step 1
led = 1
put zahl
pause 50
led = 0
pause 50
next zahl
goto hauptroutine
Lesezeichen