Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
e99a2df578 | |||
7e5f3fdbf3 | |||
b538526948 | |||
889142d0f7 | |||
3791689fc4 | |||
d05f66650f | |||
a4f08e99a9 | |||
3999c215ce | |||
c6b8acb0b8 | |||
1e054f96ec | |||
190e5e2e03 |
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -12,6 +12,7 @@
|
|||||||
*.html text eol=lf
|
*.html text eol=lf
|
||||||
*.py text eol=lf
|
*.py text eol=lf
|
||||||
*.exp text eol=lf
|
*.exp text eol=lf
|
||||||
|
*.manifest text eol=lf
|
||||||
|
|
||||||
# do not enforce text for everything - it causes issues with random binary files
|
# do not enforce text for everything - it causes issues with random binary files
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ basic.showString("BBC micro:bit");
|
|||||||
|
|
||||||
## C++ Runtime
|
## C++ Runtime
|
||||||
|
|
||||||
The C++ BBC micro:bit library, created at [Lancaster University](http://www.lancaster.ac.uk/), provides access to the hardware functions of the micro:bit,
|
The [C++ BBC micro:bit runtime](http://lancaster-university.github.io/microbit-docs/), created at [Lancaster University](http://www.lancaster.ac.uk/), provides access to the hardware functions of the micro:bit,
|
||||||
as well as a set of helper functions (such as displaying a number/image/string on the LED screen).
|
as well as a set of helper functions (such as displaying a number/image/string on the LED screen).
|
||||||
The JavaScript micro:bit library mirrors the functions of the C++ library.
|
The JavaScript micro:bit library mirrors the functions of the C++ library.
|
||||||
When code is compiled to ARM machine code, the calls to JavaScript micro:bit functions are replaced with calls to the corresponding C++ functions.
|
When code is compiled to ARM machine code, the calls to JavaScript micro:bit functions are replaced with calls to the corresponding C++ functions.
|
||||||
|
BIN
docs/static/logo128.png
vendored
Normal file
BIN
docs/static/logo128.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
BIN
docs/static/logo32.png
vendored
Normal file
BIN
docs/static/logo32.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
BIN
docs/static/logo512.png
vendored
Normal file
BIN
docs/static/logo512.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 129 KiB |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "pxt-microbit",
|
"name": "pxt-microbit",
|
||||||
"version": "0.2.49",
|
"version": "0.2.52",
|
||||||
"description": "BBC micro:bit target for PXT",
|
"description": "BBC micro:bit target for PXT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"JavaScript",
|
"JavaScript",
|
||||||
@ -29,6 +29,6 @@
|
|||||||
"typescript": "^1.8.7"
|
"typescript": "^1.8.7"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"pxt-core": "0.2.51"
|
"pxt-core": "0.2.55"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@
|
|||||||
"log": true
|
"log": true
|
||||||
},
|
},
|
||||||
"appTheme": {
|
"appTheme": {
|
||||||
"logoUrl": "https://www.microbit.co.uk/",
|
"logoUrl": "https://codemicrobit.com/about",
|
||||||
"logo": "./static/logo.svg",
|
"logo": "./static/logo.svg",
|
||||||
"portraitLogo":"./static/portraitlogo.svg",
|
"portraitLogo":"./static/portraitlogo.svg",
|
||||||
"footerLogo": "./static/footerlogo.svg",
|
"footerLogo": "./static/footerlogo.svg",
|
||||||
|
9
sim/public/sim.manifest
Normal file
9
sim/public/sim.manifest
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
CACHE MANIFEST
|
||||||
|
|
||||||
|
CACHE:
|
||||||
|
/cdn/bluebird.min.js
|
||||||
|
/cdn/pxtsim.js
|
||||||
|
/sim/sim.js
|
||||||
|
|
||||||
|
NETWORK:
|
||||||
|
*
|
@ -1,5 +1,5 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en" data-framework="typescript">
|
<html lang="en" data-manifest="" data-framework="typescript">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
17
webmanifest.json
Normal file
17
webmanifest.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "https://az851932.vo.msecnd.net/pub/fpenpmjz",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}, {
|
||||||
|
"src": "https://az851932.vo.msecnd.net/pub/vetoccmr",
|
||||||
|
"sizes": "128x128",
|
||||||
|
"type": "image/png"
|
||||||
|
}, {
|
||||||
|
"src": "https://az851932.vo.msecnd.net/pub/xiioeeyf",
|
||||||
|
"sizes": "32x32",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Reference in New Issue
Block a user