1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

MacでESP-32S+感光性センサーモジュールを動かす

Last updated at Posted at 2020-05-05

MacでESP-32S+感光性センサーモジュールを動かした際の備忘録です。

用意

購入したもの
ESP32 ESP-32S Aideepen 2個セット ESP-32ワイヤレスWiFi Bluetooth 2.4GHz CP2102マイクロUSBデュアルコアESP32-WROOM-32開発ボード
HiLetgo 5個セット 感光性センサーモジュール 光抵抗体モジュール 4ピン [並行輸入品]

前提

以下記事のように、ESP-32Sにコードを書き込める状態になっていることを前提とする。

MacでESP-32Sにコードを書き込む

ピンを接続する

以下を参考にしました。

https://kit.socinno.com/1_3_b/
図B.ESP-WROOM-32(30pin)

スクリーンショット 2020-05-05 13.37.11.png

ESP32 - 感光性センサーモジュール
3.3V - VCC
GND - GND
VP - A0 # AnalogOut 0

IMG_3632.JPG

動作確認

sample
void setup() {
  // initialize serial communication at 9600 bits per second:
  Serial.begin(115200);
}

// the loop routine runs over and over again forever:
void loop() {
  // read the input on analog pin 0:
  int sensorValue = analogRead(A0);
  // print out the value you read:
  Serial.println(sensorValue);
  delay(1);        // delay in between reads for stability
}

スケッチ→マイコンボードに書き込むとした後、
シリアルモニタに値が出力されていればOK

スクリーンショット 2020-05-05 13.37.34.png

参考

MacでESP-32Sにコードを書き込む
https://kit.socinno.com/1_3_b/
ESP32のアナログ入力(ADC)可能なピン
ESP-32でアナログ入力を使うときの注意点

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?