Compare commits
31 Commits
Author | SHA1 | Date | |
---|---|---|---|
5344717749 | |||
1bbf8a4473 | |||
f1d9075c9d | |||
cffbdb9eae | |||
cc75ae57da | |||
068300c5f5 | |||
251f198441 | |||
fe39902d10 | |||
030cd46c5f | |||
8cc2f1219f | |||
39a629cc58 | |||
df65c34f15 | |||
00fefe10d6 | |||
d442f5aa41 | |||
3311865817 | |||
2cd2950496 | |||
b0de3d8c1b | |||
acefe3ae11 | |||
cb6c83eec7 | |||
e0c8f65a65 | |||
a4e02dcd03 | |||
fb5776ec41 | |||
d852fd961b | |||
1ed8122804 | |||
c5cec3a6ba | |||
ba94322d4c | |||
225f1da6d5 | |||
a06331eef1 | |||
aa741ce8de | |||
61fe5091fe | |||
3d90e13797 |
12
.github/workflows/calibreapp-image-actions.yml
vendored
@ -1,12 +0,0 @@
|
||||
name: Compress images
|
||||
on: pull_request
|
||||
jobs:
|
||||
build:
|
||||
name: calibreapp/image-actions
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: calibreapp/image-actions
|
||||
uses: docker://calibreapp/github-image-actions
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
1
.gitignore
vendored
@ -17,6 +17,7 @@ clients/**/bin/**
|
||||
clients/**/obj/**
|
||||
clients/electron/projects
|
||||
libs/**/_locales/**
|
||||
package-lock.json
|
||||
|
||||
videos/**
|
||||
|
||||
|
14
cmds/cmds.ts
@ -1,14 +0,0 @@
|
||||
/// <reference path="../node_modules/pxt-core/built/pxtlib.d.ts" />
|
||||
|
||||
import * as fs from 'fs';
|
||||
|
||||
const deploy = require("./editor/deploy")
|
||||
|
||||
export function deployCoreAsync(resp: pxtc.CompileResult) {
|
||||
return deploy.deployCoreAsync(resp, process.env["PXT_SERIAL"] ? false : true)
|
||||
.then(() => {
|
||||
fs.writeFileSync("built/full-" + pxtc.BINARY_UF2, resp.outfiles[pxtc.BINARY_UF2], {
|
||||
encoding: "base64"
|
||||
})
|
||||
})
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"noImplicitAny": true,
|
||||
"noImplicitReturns": true,
|
||||
"declaration": true,
|
||||
"outDir": "../built",
|
||||
"module": "commonjs",
|
||||
"rootDir": ".",
|
||||
"newLine": "LF",
|
||||
"sourceMap": false,
|
||||
"types": ["node"]
|
||||
}
|
||||
}
|
13
docs/fll.md
@ -35,6 +35,13 @@ On the home page, scroll down to the **FLL / City Shaper** section for specific
|
||||
|
||||
Yes.
|
||||
|
||||
### Can I run the program again on the brick?
|
||||
|
||||

|
||||
|
||||
Use the Brick Buttons and navigate to the File Manager tab. Open the **BrkProg_SAVE** folder,
|
||||
select your program and click the center button to run it again.
|
||||
|
||||
### Does it work without internet?
|
||||
|
||||
No, the editor is cached in your browser cache. However, you can also download the [offline app](/offline-app) in case you need to install it on a computer.
|
||||
@ -98,6 +105,12 @@ The official answer is currently no. That being said, we have **Experimental sup
|
||||
|
||||
https://youtu.be/VIq8-6Egtqs
|
||||
|
||||
## Are there YouTube videos on MakeCode for EV3?
|
||||
|
||||
The MakeCode has a [FLL / City Shaper YouTube Channel](https://www.youtube.com/watch?v=IqL0Pyeu5Ng&list=PLMMBk9hE-SeqkOObethhlZtBTEK6FYx3n) with useful videos.
|
||||
|
||||
https://youtu.be/-AirqwC9DL4
|
||||
|
||||
### Why can't I delete my program (*.uf2) files from the Brick?
|
||||
|
||||
There's a bug in the firmware which prevents you from deleting the programs (``*.uf2`` files) from your EV3 Brick. There isn't a firmware update to fix this yet.
|
||||
|
@ -56,7 +56,7 @@ Verify that the program you just created shows eyes on the Brick Display, and th
|
||||
|
||||
## Run it Again
|
||||
|
||||

|
||||

|
||||
|
||||
Use the Brick Buttons and navigate to the File Manager tab. Open the **BrkProg_SAVE** folder, select **Try** and click the center button to run it again.
|
||||
|
||||
|
@ -1,9 +1,88 @@
|
||||
# Projects
|
||||
|
||||
Here are some cool projects that you can build with your @boardname@!
|
||||
```codecard
|
||||
[
|
||||
{
|
||||
"name": "Getting Started",
|
||||
"url": "/getting-started",
|
||||
"imageUrl": "/static/lessons/firmware.png"
|
||||
},
|
||||
{
|
||||
"name": "Brick Tutorials",
|
||||
"url": "/tutorials/brick",
|
||||
"imageUrl": "/static/tutorials/wake-up.png"
|
||||
},
|
||||
{
|
||||
"name": "Motor Tutorials",
|
||||
"url": "/tutorials/motors",
|
||||
"imageUrl": "/static/tutorials/run-motors.png"
|
||||
},
|
||||
{
|
||||
"name": "Touch Sensor Tutorials",
|
||||
"url": "/tutorials/touch-sensor",
|
||||
"imageUrl": "/static/tutorials/touch-to-run.png"
|
||||
},
|
||||
{
|
||||
"name": "Color Sensor Tutorials",
|
||||
"url": "/tutorials/color-sensor",
|
||||
"imageUrl": "/static/tutorials/what-color.png"
|
||||
},
|
||||
{
|
||||
"name": "Ultrasonic Sensor Tutorials",
|
||||
"url": "/tutorials/ultrasonic-sensor",
|
||||
"imageUrl": "/static/tutorials/object-near.png"
|
||||
},
|
||||
{
|
||||
"name": "Gyro Tutorials",
|
||||
"url": "/tutorials/gyro",
|
||||
"imageUrl": "/static/tutorials/calibrate-gyro.png"
|
||||
},
|
||||
{
|
||||
"name": "Infrared Sensor Tutorials",
|
||||
"url": "/tutorials/infrared-sensor",
|
||||
"imageUrl": "/static/tutorials/security-alert.png"
|
||||
},
|
||||
{
|
||||
"name": "FLL / City Shaper",
|
||||
"url": "/tutorials/city-shaper",
|
||||
"imageUrl": "/static/tutorials/city-shaper/robot1.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Design Engineering",
|
||||
"url": "/design-engineering",
|
||||
"imageUrl": "/static/lessons/make-it-move-without-wheels.png"
|
||||
},
|
||||
{
|
||||
"name": "Coding",
|
||||
"url": "/coding",
|
||||
"imageUrl": "/static/lessons/autonomous-parking.png"
|
||||
},
|
||||
{
|
||||
"name": "Maker",
|
||||
"url": "/maker",
|
||||
"imageUrl": "/static/lessons/make-a-sound-machine.png"
|
||||
},
|
||||
{
|
||||
"name": "Tutorial Videos",
|
||||
"url": "/videos",
|
||||
"imageUrl": "https://legoeducation.videomarketingplatform.co/27288170/35719444/5d009e5f93fbf479c2e5ed2bf87a7990/thumbnail.png"
|
||||
}
|
||||
]
|
||||
```
|
||||
|
||||
## Basic
|
||||
## See Also
|
||||
|
||||
Basic projects to build with your EV3 Brick.
|
||||
[Getting Started](/getting-started),
|
||||
[Brick Tutorials](/tutorials/brick),
|
||||
[Motor Tutorials](/tutorials/motors),
|
||||
[Touch Sensor Tutorials](/tutorials/touch-sensor),
|
||||
[Color Sensor Tutorials](/tutorials/color-sensor),
|
||||
[Ultrasonic Sensor Tutorials](/tutorials/ultrasonic-sensor),
|
||||
[Gyro Tutorials](/tutorials/gyro),
|
||||
[Infrared Sensor Tutorials](/tutorials/infrared-sensor),
|
||||
[FLL / City Shaper](/tutorials/city-shaper),
|
||||
[Design Engineering](/design-engineering),
|
||||
[Coding](/coding),
|
||||
[Maker](/maker),
|
||||
[Tutorial Videos](/videos)
|
||||
|
||||
Coming soon.
|
69
docs/projects/SUMMARY.md
Normal file
@ -0,0 +1,69 @@
|
||||
# Projects
|
||||
|
||||
* [Getting Started](/getting-started)
|
||||
* [Prepare](https://makecode.mindstorms.com/troubleshoot)
|
||||
* [Try](/getting-started/try)
|
||||
* [Use](/getting-started/use)
|
||||
* [First LEGO League](/fll)
|
||||
* [Brick Tutorials](/tutorials/brick)
|
||||
* [Wake Up!](/tutorials/wake-up)
|
||||
* [Make an Animation](/tutorials/make-an-animation)
|
||||
* [What Animal Am I?](/tutorials/what-animal-am-i)
|
||||
* [Music Brick](/tutorials/music-brick)
|
||||
* [Pause On Start](/tutorials/pause-on-start)
|
||||
* [Motor Tutorials](/tutorials/motors)
|
||||
* [Run Motors](/tutorials/run-motors)
|
||||
* [Spin Turn](/tutorials/spin-turn)
|
||||
* [Pivot Turn](/tutorials/pivot-turn)
|
||||
* [Smooth Turn](/tutorials/smooth-turn)
|
||||
* [Tank ZigZag](/tutorials/tank-zigzag)
|
||||
* [Coast Or Brake](/tutorials/coast-or-brake)
|
||||
* [Turtle](/tutorials/turtle)
|
||||
* [Touch Sensor Tutorials](/tutorials/touch-sensor)
|
||||
* [Touch to Run](/tutorials/touch-to-run)
|
||||
* [Sensor Values](/tutorials/touch-sensor-values)
|
||||
* [Stop At Object](/tutorials/stop-at-object)
|
||||
* [Color Sensor Tutorials](/tutorials/color-sensor)
|
||||
* [What Color?](/tutorials/what-color)
|
||||
* [Line Following](/tutorials/line-following)
|
||||
* [Red Light, Green Light](/tutorials/redlight-greenlight)
|
||||
* [Move To Color](/tutorials/move-to-color)
|
||||
* [Reflected Light Measure](/tutorials/reflected-light-measure)
|
||||
* [Reflected Light Calibration](/tutorials/reflected-light-calibration)
|
||||
* [Ultrasonic Sensor Tutorials](/tutorials/ultrasonic-sensor)
|
||||
* [Object Near](/tutorials/object-near)
|
||||
* [Wall Follower](/tutorials/wall-follower)
|
||||
* [Gyro Tutorials](/tutorials/gyro)
|
||||
* [Calibrate](/tutorials/calibrate-gyro)
|
||||
* [Turn](/tutorials/turn-with-gyro)
|
||||
* [Move Straight](/tutorials/move-straight-with-gyro)
|
||||
* [Drifter](/tutorials/drifter)
|
||||
* [Infrared Sensor Tutorials](/tutorials/infrared-sensor)
|
||||
* [Security Alert](/tutorials/security-alert)
|
||||
* [FLL / City Shaper](/tutorials/city-shaper)
|
||||
* [Crane Mission / Robot 1](/tutorials/city-shaper/robot-1)
|
||||
* [Crane Mission / Robot 2](/tutorials/city-shaper/robot-2)
|
||||
* [Crane Mission / Video 1](https://youtu.be/IqL0Pyeu5Ng)
|
||||
* [Bluetooth download (beta)](https://youtu.be/VIq8-6Egtqs)
|
||||
* [Turn with Gyro](https://youtu.be/I7ncuXAfBwk)
|
||||
* [Moving with Gyro](https://youtu.be/ufiOPvW37xc)
|
||||
* [Line following with 1 color sensor](https://youtu.be/_LeduyKQVjg)
|
||||
* [Proportional line following with 1 color sensor](https://youtu.be/-AirqwC9DL4)
|
||||
* [Proportional line following with 2 color sensors](https://youtu.be/QWOflBuu9Oo)
|
||||
* [Design Engineering](/design-engineering)
|
||||
* [Make It Move Without Wheels](/design-engineering/make-it-move)
|
||||
* [Make It Smarter and Faster](/design-engineering/make-it-smarter)
|
||||
* [Make a System that Communicates](/design-engineering/make-it-communicate)
|
||||
* [Coding](/coding)
|
||||
* [Autonomous Parking](/coding/autonomous-parking)
|
||||
* [Object Detection](/coding/object-detection)
|
||||
* [Line Detection](/coding/line-detection)
|
||||
* [Maker](/maker)
|
||||
* [Make A Sound Machine](/maker/sound-machine)
|
||||
* [Make A Security Gadget](/maker/security-gadget)
|
||||
* [Tutorial Videos](/videos)
|
||||
* [undefined](https://legoeducation.videomarketingplatform.co/v.ihtml/player.html?token=5d009e5f93fbf479c2e5ed2bf87a7990&source=embed&photo%5fid=35719444)
|
||||
* [undefined](https://legoeducation.videomarketingplatform.co/v.ihtml/player.html?token=2008a566f1fb034d58d5ebe19ba8621f&source=embed&photo%5fid=35719467)
|
||||
* [undefined](https://legoeducation.videomarketingplatform.co/v.ihtml/player.html?token=629730c938e452f0fd7653fbc4708166&source=embed&photo%5fid=35719470)
|
||||
* [undefined](https://legoeducation.videomarketingplatform.co/v.ihtml/player.html?token=3513a83b87fe536b2dc512237465fd1b&source=embed&photo%5fid=35719471)
|
||||
* [undefined](https://legoeducation.videomarketingplatform.co/v.ihtml/player.html?token=5c594c2373367f7870196f519f3bfc7a&source=embed&photo%5fid=35719472)
|
18
docs/reference/brick/exit-program.md
Normal file
@ -0,0 +1,18 @@
|
||||
# exit Program
|
||||
|
||||
Stops the program and returns to the brick menu
|
||||
|
||||
```sig
|
||||
brick.exitProgram();
|
||||
```
|
||||
|
||||
## Example
|
||||
|
||||
Do a sequence of motor commands and stop the program.
|
||||
|
||||
```blocks
|
||||
motors.largeA.run(50)
|
||||
pause(500)
|
||||
motors.stopAll()
|
||||
brick.exitProgram();
|
||||
```
|
BIN
docs/static/MC-LEGO-loader-eyes.png
vendored
Before Width: | Height: | Size: 2.7 KiB |
BIN
docs/static/Microsoft-logo_rgb_c-gray-square.png
vendored
Before Width: | Height: | Size: 911 B After Width: | Height: | Size: 1.8 KiB |
BIN
docs/static/Microsoft-logo_rgb_c-gray.png
vendored
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 20 KiB |
BIN
docs/static/Microsoft-logo_rgb_c-white.png
vendored
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 12 KiB |
BIN
docs/static/about/blocks-to-js.png
vendored
Before Width: | Height: | Size: 2.1 KiB |
BIN
docs/static/about/blocks-toolbox.png
vendored
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 22 KiB |
BIN
docs/static/about/download-button.png
vendored
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 3.0 KiB |
BIN
docs/static/about/explorer-button.png
vendored
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 2.2 KiB |
BIN
docs/static/about/explorer-view.png
vendored
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 10 KiB |
BIN
docs/static/about/help-button.png
vendored
Before Width: | Height: | Size: 781 B After Width: | Height: | Size: 1.5 KiB |
BIN
docs/static/about/home-button.png
vendored
Before Width: | Height: | Size: 607 B After Width: | Height: | Size: 1.2 KiB |
BIN
docs/static/about/more-settings.png
vendored
Before Width: | Height: | Size: 756 B After Width: | Height: | Size: 1.5 KiB |
BIN
docs/static/about/redo-button.png
vendored
Before Width: | Height: | Size: 472 B After Width: | Height: | Size: 981 B |
BIN
docs/static/about/save-project.png
vendored
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 2.7 KiB |
BIN
docs/static/about/share-button.png
vendored
Before Width: | Height: | Size: 533 B After Width: | Height: | Size: 1.0 KiB |
BIN
docs/static/about/share-dialog.png
vendored
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 24 KiB |
BIN
docs/static/about/undo-button.png
vendored
Before Width: | Height: | Size: 463 B After Width: | Height: | Size: 998 B |
BIN
docs/static/about/zoom-in.png
vendored
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 1011 B |
BIN
docs/static/about/zoom-out.png
vendored
Before Width: | Height: | Size: 438 B After Width: | Height: | Size: 933 B |
BIN
docs/static/backgrounds/simulator.png
vendored
Before Width: | Height: | Size: 349 B After Width: | Height: | Size: 681 B |
BIN
docs/static/bluetooth/experimental.png
vendored
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 44 KiB |
BIN
docs/static/coding/line-detection/car-road-line.jpg
vendored
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 77 KiB |
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 44 KiB |
BIN
docs/static/coding/object-detection/ev3-cuboid.jpg
vendored
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 44 KiB |
BIN
docs/static/coding/object-detection/road-deer.jpg
vendored
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 42 KiB |
BIN
docs/static/configurations/chrome-version.png
vendored
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 14 KiB |
BIN
docs/static/configurations/edge-version.png
vendored
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 4.8 KiB |
BIN
docs/static/configurations/firefox-version.png
vendored
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 47 KiB |
BIN
docs/static/configurations/ie-version.png
vendored
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 17 KiB |
BIN
docs/static/configurations/osx-version.jpg
vendored
Before Width: | Height: | Size: 45 KiB |
BIN
docs/static/configurations/osx-version.png
vendored
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 128 KiB |
BIN
docs/static/configurations/safari-version.png
vendored
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 44 KiB |
BIN
docs/static/configurations/windows-version.png
vendored
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 82 KiB |
BIN
docs/static/download/firmware.png
vendored
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 4.5 KiB |
BIN
docs/static/fll/code-js.png
vendored
Before Width: | Height: | Size: 19 KiB |
BIN
docs/static/fll/context-help.jpg
vendored
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 42 KiB |
BIN
docs/static/fll/fll-big.png
vendored
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.4 KiB |
BIN
docs/static/fll/fll-logo.png
vendored
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 17 KiB |
BIN
docs/static/fll/import-button.jpg
vendored
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 74 KiB |
BIN
docs/static/fll/save-project.jpg
vendored
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 22 KiB |
BIN
docs/static/fll/share-button.jpg
vendored
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 16 KiB |
BIN
docs/static/fll/share-program.jpg
vendored
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 55 KiB |
BIN
docs/static/fll/share-program.png
vendored
Before Width: | Height: | Size: 17 KiB |
BIN
docs/static/fll/simulator.png
vendored
Before Width: | Height: | Size: 19 KiB |
BIN
docs/static/getting-started/01_EyesOn_Intro.png
vendored
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 77 KiB |
BIN
docs/static/getting-started/02_ApplePickerRobot.jpg
vendored
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 42 KiB |
BIN
docs/static/getting-started/02_PowerOn.png
vendored
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 79 KiB |
BIN
docs/static/getting-started/03_insert-usb-02.jpg
vendored
Before Width: | Height: | Size: 48 KiB |
BIN
docs/static/getting-started/03_insert-usb-02.png
vendored
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 89 KiB |
BIN
docs/static/getting-started/05_EyesOn.png
vendored
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 62 KiB |
BIN
docs/static/getting-started/06_PlugInLargeMotor.jpg
vendored
Before Width: | Height: | Size: 40 KiB |
BIN
docs/static/getting-started/06_PlugInLargeMotor.png
vendored
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 87 KiB |
BIN
docs/static/getting-started/08_WorkingLargeMotor.png
vendored
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 72 KiB |
BIN
docs/static/getting-started/09_Connect_Touch.jpg
vendored
Before Width: | Height: | Size: 51 KiB |
BIN
docs/static/getting-started/09_Connect_Touch.png
vendored
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 94 KiB |
BIN
docs/static/getting-started/11_TouchMotorWorking.png
vendored
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 83 KiB |
BIN
docs/static/getting-started/12_ConnectColor.jpg
vendored
Before Width: | Height: | Size: 45 KiB |
BIN
docs/static/getting-started/12_ConnectColor.png
vendored
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 82 KiB |
BIN
docs/static/getting-started/15_Use-it.jpg
vendored
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 41 KiB |
BIN
docs/static/getting-started/Try-in-file-manager.jpg
vendored
Before Width: | Height: | Size: 27 KiB |
BIN
docs/static/getting-started/simulate.png
vendored
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 20 KiB |
BIN
docs/static/getting-started/try-in-file-manager.png
vendored
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
docs/static/hero.jpg
vendored
Before Width: | Height: | Size: 27 KiB |
BIN
docs/static/hero.png
vendored
Before Width: | Height: | Size: 347 KiB After Width: | Height: | Size: 481 KiB |
BIN
docs/static/icons/android-chrome-192x192.png
vendored
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 7.7 KiB |
BIN
docs/static/icons/android-chrome-256x256.png
vendored
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 11 KiB |
BIN
docs/static/icons/apple-touch-icon.png
vendored
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 5.0 KiB |
BIN
docs/static/icons/favicon-16x16.png
vendored
Before Width: | Height: | Size: 376 B After Width: | Height: | Size: 670 B |
BIN
docs/static/icons/favicon-32x32.png
vendored
Before Width: | Height: | Size: 837 B After Width: | Height: | Size: 1.1 KiB |
BIN
docs/static/icons/mstile-150x150.png
vendored
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 5.6 KiB |
BIN
docs/static/labview/brake.png
vendored
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 11 KiB |
BIN
docs/static/labview/brickimage.png
vendored
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 12 KiB |
BIN
docs/static/labview/brickstatuslight.png
vendored
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 14 KiB |
BIN
docs/static/labview/ife.png
vendored
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 46 KiB |
BIN
docs/static/labview/invertmotor.png
vendored
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 9.2 KiB |
BIN
docs/static/labview/lighttospeed.png
vendored
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 24 KiB |
BIN
docs/static/labview/motors.png
vendored
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 22 KiB |
BIN
docs/static/labview/multipleloops.png
vendored
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 52 KiB |
BIN
docs/static/labview/pausefordistance.png
vendored
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 17 KiB |
BIN
docs/static/labview/pausefortime.png
vendored
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 15 KiB |
BIN
docs/static/labview/pausefortouch.png
vendored
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 18 KiB |
BIN
docs/static/labview/random.png
vendored
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 31 KiB |
BIN
docs/static/labview/sequencing.png
vendored
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 15 KiB |