Skip to content

Commit c14472a

Browse files
committed
Revision and modification for japanaese translation
1 parent 4473459 commit c14472a

File tree

5 files changed

+20
-22
lines changed

5 files changed

+20
-22
lines changed

exercises/blink_blink/problem.ja.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
**このワークショップではArduinoなどは用意しなくても大丈夫です。**
77

88
出題される問題にチャレンジしてみましょう。
9-
The low level code to talk to the Arduino is stubbed out.
109

1110
**実行可能な`johnny-five`のコードを記述していってください**
1211

1312
それぞれの回答は`node`プログラムとして実行可能となります。
14-
Arduinoに配線をつないだり、USB接続したりして回答コードがどのように動作するか確認してみましょう。
13+
ハードウェアを持っている人はArduinoに配線をつないだり、USB接続したりして回答コードがどのように動作するか確認してみましょう。
1514

1615
-------------------------------------------------------------------------------
1716

@@ -64,5 +63,5 @@ Arduinoに配線をつないだり、USB接続したりして回答コードが
6463

6564
- Board - https://github.com/rwaldron/johnny-five/wiki/Board
6665
- Led - https://github.com/rwaldron/johnny-five/wiki/Led#api
67-
66+
- nodebot-workshopについて - http://liginc.co.jp/283711
6867
---

exercises/remote_temperature/problem.ja.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ GND o-----'
2727

2828
- TMP36 - http://node-ardx.org/electronics-primer#tempsensor
2929

30-
> Produces a variable resistance dependant on the ambient temperature.
30+
> 周囲の温度によって変化する可変抵抗を生成します。
3131
3232
## ヒント
3333

34-
- Remember, you're always working with voltages on pins
35-
- The value from a sensor is a representation of the voltage on that pin
36-
- You'll need to convert that value into a useful temperature reading...
37-
- To create an enpoint, pass dnode an object with your endpoint as a method
38-
- Your endpoint should take a callback and pass the value to it
34+
- 常にピンの電圧で作業していることを覚えておいてください。
35+
- センサーからの値はそのピンの電圧の表現です。
36+
- 有用な温度の読取り値に値を変換する必要があります。
37+
- エンドポイントを作成するには、エンドポイントのメソッドにdnodeオブジェクトを渡します。
38+
- あなたのエンドポイントは、コールバックと値を渡す必要があります。
3939

4040
## ドキュメント
4141

4242
- https://github.com/rwaldron/johnny-five/blob/master/docs/temperature-tmp36.md
4343
- dnode - https://github.com/substack/dnode
44-
44+
- dnodeの使い方 - http://qiita.com/n0bisuke/items/5a9d3e2fd1785ad60e44
4545
---

exercises/robot_arm/problem.ja.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ GND o---.------/\/\/------.
3535

3636
- Potentiometer - http://node-ardx.org/electronics-primer#pot
3737

38-
> Produces a variable resistance dependant on the angular position of the shaft.
38+
> シャフトの角度によって変化する可変抵抗を生成します。
3939
4040
## ドキュメント
4141

@@ -44,9 +44,9 @@ GND o---.------/\/\/------.
4444

4545
## ヒント
4646

47-
- A potentiometer is another use case for the Sensor object...
48-
- A pot produces input values between 0 and 1023.
49-
- A servo can typically be moved between 0 and 179 degrees.
50-
- `five.Fn.map` can map the pot values (0 - 1023) to servo angles (0 - 179).
47+
- ポテンショメータは、センサーオブジェクトの別のユースケースです。
48+
- 0〜1023の間の入力値を生成します。
49+
- サーボは通常0〜179度の角度を動くことができます。
50+
- `five.Fn.mapメソッド`はポテンショメータの値(0~1023)をサーボの角度(0~179)にマッピングすることができます。
5151

5252
---

exercises/servo_wave/problem.ja.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
__3秒サーボを動かして、止めて、真ん中に戻しましょう。__
22

3-
- 9pinに接続した`Servo`インスタンスを作成します
4-
- `servo.sweep`を使い0˚から180˚に回転させます
5-
- `board.wait`を'reset'コールバックの3秒後に使います
6-
- 'reset'コールバックでは`stop``center`にします
3+
- 9pinに接続した`Servoインスタンス`を作成します
4+
- `servo.sweepメソッド`を使い0˚から180˚に回転させます
5+
- `board.waitメソッド`を使い、3秒後にコールバックを発火させます
6+
- コールバック内では`stopメソッド``centerメソッド`を使いましょう。
77
- どこの行に書き足せばいいかドキュメントで確認しましょう
88

99
## ひな形
@@ -40,7 +40,7 @@ GND o--. | .--o Pin 9
4040

4141
- Servo - http://node-ardx.org/electronics-primer#servo
4242

43-
> Takes a timed pulse and converts it into an angular position of the output shaft.
43+
> パルスを受け取り、シャフトの角度を指定して回転させます。
4444
4545
## ドキュメント
4646

exercises/spin_motor_spin/problem.ja.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ __9pinにモーターを接続してスピンさせましょう!__
55
* 1秒後に回転再開させます
66
* この流れを無限ループさせてください
77

8-
ヒント:
9-
Hint: You could use the motor `start` and `stop` events to stop/start the motor.
8+
ヒント: モーターの回転を開始したり、停止させるために`start`` stop`イベントを使用できます。
109

1110
## 回路図
1211

0 commit comments

Comments
 (0)