Initial commit, based on pxt-adafruit

This commit is contained in:
Michal Moskal
2017-06-29 15:47:26 +01:00
commit 207e7a026c
133 changed files with 1670 additions and 0 deletions

11
libs/core/test.ts Normal file
View File

@ -0,0 +1,11 @@
let i = 1
let f = 0.5
let plus = i + f
let minus = i - f
let r = Math.random()
let ri = Math.randomRange(5, 10)
loops.forever(() => {
loops.pause(100)
})