diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-07 17:14:05 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-07 17:14:05 +0000 |
commit | fd04bb3bacf5dbc4d79c04a49520e3e81abb7352 (patch) | |
tree | 17df5d5e31e738fa5bed33e08824ad4e8e125160 /examples/pyb.py | |
parent | 7b21c2d8f01b33b35463cb22487b1235aa7446a4 (diff) | |
download | micropython-fd04bb3bacf5dbc4d79c04a49520e3e81abb7352.tar.gz micropython-fd04bb3bacf5dbc4d79c04a49520e3e81abb7352.zip |
Add some example scripts for pyboard (some can run on PC).
Diffstat (limited to 'examples/pyb.py')
-rw-r--r-- | examples/pyb.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/pyb.py b/examples/pyb.py new file mode 100644 index 0000000000..5e24f40e4a --- /dev/null +++ b/examples/pyb.py @@ -0,0 +1,11 @@ +# pyboard testing functions for PC + +def delay(n): + pass + +rand_seed = 1 +def rand(): + global rand_seed + # for these choice of numbers, see P L'Ecuyer, "Tables of linear congruential generators of different sizes and good lattice structure" + rand_seed = (rand_seed * 653276) % 8388593 + return rand_seed |