From 1fe3d3e01acfa5a7a27657d28f424e2354785053 Mon Sep 17 00:00:00 2001 From: Galen Nickel Date: Thu, 7 Mar 2019 19:40:21 -0800 Subject: [PATCH 1/3] plug in offline page (#836) --- docs/offline.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs/offline.md diff --git a/docs/offline.md b/docs/offline.md new file mode 100644 index 00000000..e4e07405 --- /dev/null +++ b/docs/offline.md @@ -0,0 +1,11 @@ +# @extends + +## Offline app #target-app + +The MakeCode editor is available as app which you can install on a computer with Windows or Mac OS. Once installed, the **[MakeCode Offline App](/offline-app)** lets you create, run, and download your projects to the @boardname@. It works the same as the Web application does in your browser but it's a stand-alone application that will work when a connection to the internet is restricted or not available. + +### ~ hint + +The [MakeCode Offline App](/offline-app) is currently in development and is made available as a **pre-release** version. + +### ~ From 4d2f72575bc2793390a5695100b33ae20a0d82f3 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 16 Jul 2019 01:26:25 +0300 Subject: [PATCH 2/3] Fixed multiple sensor bug (#868) --- libs/core/input.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/core/input.ts b/libs/core/input.ts index e8e923a3..27d3c160 100644 --- a/libs/core/input.ts +++ b/libs/core/input.ts @@ -207,7 +207,7 @@ namespace sensors.internal { constructor(port: number) { super(port) this.mode = 0 - this.realmode = -1 + this.realmode = 0 } _activated() { @@ -513,4 +513,4 @@ namespace sensors { } } } -} \ No newline at end of file +} From fd75bb61d6100b9d7dfb11f80d5683ea2ee398c1 Mon Sep 17 00:00:00 2001 From: dsbibby <17053612+dsbibby@users.noreply.github.com> Date: Tue, 6 Aug 2019 22:50:19 +0100 Subject: [PATCH 3/3] Fix typos in sample programme description (#872) 1500 milliseconds is not one quarter of a second - fixed the text to reflect. --- docs/design-engineering/make-it-smarter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/design-engineering/make-it-smarter.md b/docs/design-engineering/make-it-smarter.md index 0c744c27..5225c88a 100644 --- a/docs/design-engineering/make-it-smarter.md +++ b/docs/design-engineering/make-it-smarter.md @@ -101,9 +101,9 @@ The blocks inside the ``||loops:forever||`` loop have these actions: 1. Turn on the ``green`` EV3 Brick Status Light. 2. Wait for Ultrasonic Sensor to detect an object. 3. Turn on Motors ``A`` and ``D`` in opposite directions. -4. Wait for one quarter of a second (``1500`` milli seconds). +4. Wait for one and a half seconds (``1500`` milli seconds). 5. Reverse the direction of Motors ``A`` and ``D``. -6. Wait for one quarter of a second. +6. Wait for one and a half seconds. 7. Stop all motors. 8. Make an insect chirping sound. 9. Loop continuously so that the insect wanders around when the Ultrasonic Sensor is detects something.