ESP-WROOM-02 Arduino互換ボードで光センサーを使う
スイッチサイエンス製 ESP-WROOM-02 Arduino互換ボード
スイッチサイエンスからESP-WROOM-02 Arduino互換ボードが発売されました。今まではESP-WROOM-02(ESP8266)をArduinoのスケッチを書き込んで使うためには、モジュールをはんだ付けしてブレッドボード上で使用したりと少々使いづらい部分がありました。それをこの互換ボードが解消してくれます
ESP-WROOM-02 Arduino互換ボードと光センサーを使ってみよう
ESP-WROOM-02 Arduino互換ボードと光センサー(CdSセル)を使って、Arduino IDEのシリアルモニターに値を表示します(ネットには接続しません)。細かな設定は記事「ESP-WROOM-02開発ボードをArduino IDEで開発する方法」をご覧ください
電子部品リスト
ESP-WROOM-02 Arduino互換ボードと電子工作に必要なもろもろの道具以外に必要な電子部品のリスト。
部品名 | 個数 | 価格 |
---|---|---|
CdSセル | 1 | 30円 |
10kΩ抵抗 | 1 | 実質1円 |
配線図
※FritzingにESP-WROOM-02 Arduino互換ボードのパーツがないため、Arduino Unoを見た目上使用しています
スケッチ
// 光センサーを接続するピン
const int sensorPin = A0;
void setup() {
Serial.begin(115200);
}
void loop() {
// 光センサーの値を取得
int sensorValue = analogRead(sensorPin);
// シリアルモニターに光センサーからの値を表示
Serial.print("sensor = ");
Serial.println(sensorValue);
delay(200);
}
// 光センサーを接続するピン
const int sensorPin = A0;
void setup() {
Serial.begin(115200);
}
void loop() {
// 光センサーの値を取得
int sensorValue = analogRead(sensorPin);
// シリアルモニターに光センサーからの値を表示
Serial.print("sensor = ");
Serial.println(sensorValue);
delay(200);
}
Author And Source
この問題について(ESP-WROOM-02 Arduino互換ボードで光センサーを使う), 我々は、より多くの情報をここで見つけました https://qiita.com/umi_kappa/items/9a48208a45b78efc2fc1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .