random - Anobium/Great-Cow-BASIC-Help GitHub Wiki
Syntax:
var = Random
Command Availability:
Available on all microcontrollers
Explanation:
The Random
function will generate a pseudo-random number between 0 and
255 inclusive.
The numbers generated by Random
will follow the same sequence every
time, until Randomize
is used.
Example:
'Set chip model
#chip tiny2313, 1
'Use randomize, with the value on PORTD as the seed
Randomize PORTD
'Generate random numbers, and output on PORTB
Do
PORTB = Random
Wait 1 s
Loop