Skip to content

Commit 1c76e21

Browse files
author
Alan Shaw
committed
More problem formatting fixes
1 parent ce1c42c commit 1c76e21

File tree

5 files changed

+12
-1
lines changed

5 files changed

+12
-1
lines changed

exercises/blink_blink/problem.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ In all of your solutions you will need to:
5555
```
5656

5757
## Components
58+
5859
- LED - http://node-ardx.org/electronics-primer#led
5960

6061
> Emits light when a small current is passed through it (only in one direction).

exercises/fire_alarm/problem.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,6 @@ Pin 5 o---------------------- |
4646
- LED - https://github.com/rwaldron/johnny-five/wiki/Led
4747
- Piezo - https://github.com/rwaldron/johnny-five/blob/master/docs/piezo.md
4848
- TMP36 - https://github.com/rwaldron/johnny-five/blob/master/docs/sensor-temperature-tmp36.md
49-
- Button - https://github.com/rwaldron/johnny-five/wiki/Button#usage
49+
- Button - https://github.com/rwaldron/johnny-five/wiki/Button#usage
50+
51+
---

exercises/robot_arm/problem.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ GND o---.------/\/\/------.
3232
```
3333

3434
## Components
35+
3536
- Potentiometer - http://node-ardx.org/electronics-primer#pot
3637

3738
> Produces a variable resistance dependant on the angular position of the shaft.
@@ -42,6 +43,7 @@ GND o---.------/\/\/------.
4243
- Fn - https://github.com/rwaldron/johnny-five/blob/master/lib/fn.js
4344

4445
## Hints
46+
4547
- A potentiometer is another use case for the Sensor object...
4648
- A pot produces input values between 0 and 1023.
4749
- A servo can typically be moved between 0 and 179 degrees.

exercises/servo_wave/problem.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ __Make a servo wave at you for 3 seconds, stop, and return to center.__
77
- Check the docs to see how to bring it back into line
88

99
## Boilerplate
10+
1011
```js
1112
var five = require('johnny-five')
1213
var board = new five.Board()
@@ -36,11 +37,13 @@ GND o--. | .--o Pin 9
3637
```
3738

3839
## Components
40+
3941
- Servo - http://node-ardx.org/electronics-primer#servo
4042

4143
> Takes a timed pulse and converts it into an angular position of the output shaft.
4244
4345
## Docs
46+
4447
- Servo - https://github.com/rwaldron/johnny-five/wiki/Servo#api
4548
- Board - https://github.com/rwaldron/johnny-five/wiki/Board#api
4649

exercises/street_lamp/problem.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@ __Build a street lamp that turns on as it gets dark.__
1717
```
1818

1919
## Components
20+
2021
- Photoresistor - http://node-ardx.org/electronics-primer#photoresistor
2122

2223
> Produces a variable resistance dependant on the amount of incident light.
2324
2425
## Docs
26+
2527
- Sensor - https://github.com/rwaldron/johnny-five/wiki/Sensor
2628

2729
## Hints
30+
2831
`johnny-five` has a generic Sensor object for handling various analog inputs.
2932
It fires a data event with the current reading of the sensor.
3033
The sensor value is available to the callback as `this.value`

0 commit comments

Comments
 (0)