Moving back to pxtcore v0 (#10)

* migrating to v0

* moving external repos to targetconfig

* reenabling sharing

* updating target

* missing dependencies

* updated pxt version

* fixing missing file

* ignore docs errors

* udpated readme

* bumping pxt

* moving setting to correct location

* missing blockly less
This commit is contained in:
Peli de Halleux
2017-12-12 10:55:00 -08:00
committed by GitHub
parent aa6b6daf45
commit 90fe68943e
13 changed files with 360 additions and 113 deletions

View File

@@ -4,7 +4,7 @@ namespace pxsim {
if (b) {
let np = b.neopixelState;
if (np) {
let buf = <Uint8Array[]>(<any>buffer).data;
let buf = <Uint8Array>(<any>buffer).data;
np.updateBuffer(buf, pin);
runtime.queueDisplayUpdate();
}