You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, but it prints the variable as a number. I would like to ability to letters without having to define every possibility. So I would like to be able to do this
VAR $i = 0
WHILE $i < 26
CHAR 65 + $i
$i = $i + 1
END_WHILE
Right now when you type out text through
STRING
or theOLED_PRINT
, it has to be predefined in a constant or by the script itself.Because of this, if you want to have more than one options for text output, you need to add if statements.
I purpose that to put a dent in the above problem, a new command is added that converts an int to an ascii character which is then outputted.
Something along the lines of
CHAR
,CHARLN
and for the oled screenOLED_CHAR
.Which would allow for
The text was updated successfully, but these errors were encountered: