update wifi quiz ans
This commit is contained in:
parent
2ab7175283
commit
34c5a5e216
@ -15,9 +15,9 @@ Answer the questions while completing the tutorial. Pay attention to the dialogu
|
|||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
```blocks
|
```blocks
|
||||||
let xAccel = math.abs(input.acceleration("x"))
|
let xAccel = Math.abs(input.acceleration(Dimension.X))
|
||||||
let yAccel = math.abs(input.acceleration("y"))
|
let yAccel = Math.abs(input.acceleration(Dimension.Y))
|
||||||
let zAccel = math.abs(input.acceleration("z"))
|
let zAccel = Math.abs(input.acceleration(Dimension.Z))
|
||||||
```
|
```
|
||||||
|
|
||||||
<br/>
|
<br/>
|
||||||
@ -29,6 +29,9 @@ let zAccel = math.abs(input.acceleration("z"))
|
|||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
```blocks
|
```blocks
|
||||||
|
let xAccel = Math.abs(input.acceleration(Dimension.X))
|
||||||
|
let yAccel = Math.abs(input.acceleration(Dimension.Y))
|
||||||
|
let zAccel = Math.abs(input.acceleration(Dimension.Z))
|
||||||
let sum = xAccel + yAccel + zAccel
|
let sum = xAccel + yAccel + zAccel
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -39,6 +42,10 @@ let sum = xAccel + yAccel + zAccel
|
|||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
```blocks
|
```blocks
|
||||||
|
let xAccel = Math.abs(input.acceleration(Dimension.X))
|
||||||
|
let yAccel = Math.abs(input.acceleration(Dimension.Y))
|
||||||
|
let zAccel = Math.abs(input.acceleration(Dimension.Z))
|
||||||
|
let sum = xAccel + yAccel + zAccel
|
||||||
if (sum < 1400) {
|
if (sum < 1400) {
|
||||||
basic.showleds(`
|
basic.showleds(`
|
||||||
. . . . .
|
. . . . .
|
||||||
@ -59,6 +66,10 @@ if (sum < 1400) {
|
|||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
```blocks
|
```blocks
|
||||||
|
let xAccel = Math.abs(input.acceleration(Dimension.X))
|
||||||
|
let yAccel = Math.abs(input.acceleration(Dimension.Y))
|
||||||
|
let zAccel = Math.abs(input.acceleration(Dimension.Z))
|
||||||
|
let sum = xAccel + yAccel + zAccel
|
||||||
if (sum >= 1400 && sum < 1680) {
|
if (sum >= 1400 && sum < 1680) {
|
||||||
basic.showleds(`
|
basic.showleds(`
|
||||||
. . . . .
|
. . . . .
|
||||||
@ -70,7 +81,7 @@ if (sum >= 1400 && sum < 1680) {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## 5. Write the 'if statement' needed to display this specific plot image on the device
|
## 5. Write the code to display this specific image on the device
|
||||||
|
|
||||||
![](/static/mb/lessons/prank-wifi-0.png)
|
![](/static/mb/lessons/prank-wifi-0.png)
|
||||||
|
|
||||||
@ -78,7 +89,11 @@ if (sum >= 1400 && sum < 1680) {
|
|||||||
|
|
||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
```
|
```blocks
|
||||||
|
let xAccel = Math.abs(input.acceleration(Dimension.X))
|
||||||
|
let yAccel = Math.abs(input.acceleration(Dimension.Y))
|
||||||
|
let zAccel = Math.abs(input.acceleration(Dimension.Z))
|
||||||
|
let sum = xAccel + yAccel + zAccel
|
||||||
if (sum >= 1680) {
|
if (sum >= 1680) {
|
||||||
basic.showleds(`
|
basic.showleds(`
|
||||||
. . . . .
|
. . . . .
|
||||||
|
Loading…
Reference in New Issue
Block a user