pxt-ev3/pxtarget.json

160 lines
4.6 KiB
JSON
Raw Permalink Normal View History

2017-06-29 15:47:26 +01:00
{
"id": "ev3",
"platformid": "linux",
"nickname": "lego",
"name": "LEGO Mindstorms EV3",
"title": "LEGO Mindstorms EV3 - Blocks / Javascript editor",
"description": "A Blocks / JavaScript code editor for the LEGO Mindstorms EV3.",
"corepkg": "ev3",
"bundleddirs": [
"libs/base",
"libs/core",
2017-07-07 11:44:34 +01:00
"libs/music",
"libs/color-sensor",
"libs/touch-sensor",
2017-11-30 09:38:04 -08:00
"libs/ultrasonic-sensor",
2017-11-30 09:53:43 -08:00
"libs/infrared-sensor",
2017-11-30 10:34:34 -08:00
"libs/gyro-sensor",
"libs/chassis",
"libs/ev3",
"libs/storage",
"libs/datalog",
"libs/tests",
"libs/behaviors"
2017-06-29 15:47:26 +01:00
],
"simulator": {
"autoRun": true,
"streams": true,
2017-12-18 13:04:17 -08:00
"aspectRatio": 0.5,
2017-06-29 15:47:26 +01:00
"parts": false,
2017-07-11 11:15:17 +03:00
"enableTrace": true,
"boardDefinition": {
"visual": "ev3"
}
2017-06-29 15:47:26 +01:00
},
"cloud": {
"workspace": false,
"packages": true,
"sharing": true,
"publishing": true,
"importing": false,
"preferredPackages": [],
"githubPackages": true
},
"compile": {
"isNative": true,
"useUF2": true,
2017-07-05 01:28:45 +02:00
"useELF": true,
2017-06-29 15:47:26 +01:00
"hasHex": true,
"deployDrives": ".*",
"deployFileMarker": "INFO_UF2.TXT",
"driveName": "LEGO",
"flashCodeAlign": 256,
"floatingPoint": true,
2017-07-05 01:28:45 +02:00
"taggedInts": true,
"stackAlign": 2
2017-06-29 15:47:26 +01:00
},
2017-07-06 17:34:31 +01:00
"serial": {
"vendorId": "0x0694",
"productId": "0x0005",
"rawHID": true,
"useEditor": true,
"log": true
},
2017-06-29 15:47:26 +01:00
"runtime": {
"mathBlocks": true,
"loopsBlocks": true,
"logicBlocks": true,
"variablesBlocks": true,
"textBlocks": true,
"listsBlocks": true,
"functionBlocks": true,
"onStartNamespace": "loops",
2017-12-11 16:58:29 -08:00
"onStartColor": "#58AB41",
"pauseUntilBlock": {
"category": "loops"
}
2017-06-29 15:47:26 +01:00
},
"compileService": {
"buildEngine": "dockermake",
2017-10-30 12:45:37 +00:00
"dockerImage": "pext/ev3:zlib",
2017-06-29 15:47:26 +01:00
"serviceId": "ev3"
},
"appTheme": {
"accentColor": "#0089BF",
"logoUrl": "https://lego.makecode.com",
"logo": "./static/lego_education_logo.png",
"docsLogo": "./static/lego-logo.svg",
"portraitLogo": "./static/lego-logo.svg",
"footerLogo": "./static/lego-logo.svg",
2017-06-29 15:47:26 +01:00
"cardLogo": "./static/icons/android-chrome-192x192.png",
"appLogo": "./static/icons/android-chrome-192x192.png",
"organization": "Microsoft MakeCode",
"organizationUrl": "https://makecode.com/",
"organizationLogo": "./static/Microsoft-logo_rgb_c-gray-square.png",
2017-07-07 18:16:01 +03:00
"organizationWideLogo": "./static/Microsoft-logo_rgb_c-gray.png",
2017-06-29 15:47:26 +01:00
"homeUrl": "https://lego.makecode.com/",
"embedUrl": "https://lego.makecode.com/",
"privacyUrl": "https://go.microsoft.com/fwlink/?LinkId=521839",
"termsOfUseUrl": "https://go.microsoft.com/fwlink/?LinkID=206977",
"githubUrl": "https://github.com/Microsoft/pxt-ev3",
2018-01-04 10:14:11 -08:00
"betaUrl": "https://lego.makecode.com/",
2017-06-29 15:47:26 +01:00
"boardName": "LEGO Mindstorms EV3 Brick",
2017-12-05 10:53:26 -08:00
"selectLanguage": true,
"highContrast": true,
2017-06-29 15:47:26 +01:00
"docMenu": [
{
"name": "About",
"path": "/about"
},
{
"name": "Blocks",
"path": "/blocks"
},
{
"name": "JavaScript",
"path": "/javascript"
},
{
"name": "Reference",
"path": "/reference"
}
],
2017-10-24 21:08:02 -07:00
"showHomeScreen": true,
"homeScreenHero": "./static/hero.png",
2017-07-07 18:16:01 +03:00
"invertedMenu": false,
"invertedMonaco": false,
2017-06-29 15:47:26 +01:00
"monacoToolbox": true,
2017-07-07 18:16:01 +03:00
"invertedToolbox": true,
2017-06-29 15:47:26 +01:00
"hasAudio": true,
"usbHelp": [],
"extendEditor": true,
"disableBlockIcons": true,
"blocklyOptions": {
},
"blockColors": {
"loops": "#58AB41",
"logic": "#1E5AA8",
"math": "#9DC3F7",
"variables": "#B40000",
"text": "#FCAC00",
"advanced": "#969696",
"functions": "#19325A",
"arrays": "#901F76"
},
"blockIcons": {
"loops": "\uf10b",
"logic": "\uf10a",
"math": "\uf10c",
"variables": "\uf111",
"text": "\uf110",
"functions": "\uf108",
"arrays": "\uf109"
},
"monacoColors": {
"editor.background": "#ecf6ff"
}
2017-12-13 15:35:53 -08:00
},
"ignoreDocsErrors": true
2017-06-29 16:35:57 +01:00
}