Object near tutorial (#445)

* Add 'Object Near?' tutorial

* Add to SUMMARY

* Fix screen line index

* Redo tutorial

* Paste fail typo
This commit is contained in:
Galen Nickel
2018-04-06 13:09:27 -07:00
committed by GitHub
parent ecc880cf8d
commit c90f00f6d0
6 changed files with 175 additions and 6 deletions

View File

@ -1,9 +1,8 @@
# Tutorials
## Tutorials
Step by step guides to coding your @boardname@.
## Brick
```codecard
[{
@ -30,13 +29,25 @@ Step by step guides to coding your @boardname@.
"cardType": "tutorial",
"url":"/tutorials/mindstorms-music",
"imageUrl":"/static/tutorials/mindstorms-music.png"
}, {
}]
```
## Motors
```codecard
[{
"name": "Run Motors",
"description": "Use the buttons to start and stop the large and medium motors.",
"cardType": "tutorial",
"url":"/tutorials/run-motors",
"imageUrl":"/static/tutorials/run-motors.png"
}, {
}]
```
## Touch Sensor
```codecard
[{
"name": "Touch to Run",
"description": "Press the Touch sensor and run a motor.",
"cardType": "tutorial",
@ -48,7 +59,13 @@ Step by step guides to coding your @boardname@.
"cardType": "tutorial",
"url":"/tutorials/touch-sensor-values",
"imageUrl":"/static/tutorials/touch-sensor-values.png"
}, {
}]
```
## Color Sensor
```codecard
[{
"name": "What Color?",
"description": "Use the Color sensor to detect different colors.",
"cardType": "tutorial",
@ -67,4 +84,16 @@ Step by step guides to coding your @boardname@.
"url":"/tutorials/redlight-greenlight",
"imageUrl":"/static/tutorials/redlight-greenlight.png"
}]
```
```
## Ultrasonic Sensor
```codecard
[{
"name": "Object Near?",
"description": "Build a program that will detect when an object is nearby.",
"cardType": "tutorial",
"url":"/tutorials/object-near",
"imageUrl":"/static/tutorials/object-near.png"
}]
```