//光抵抗二つで光源の方向を検出するのプログラム
const int analogInPin = A0; // A0ピンをアナログ入力として定義
int sensorValue; // センサーからの値を格納する変数
void setup() {
Serial.begin(9600); // シリアル通信の初期化
}
void loop() {
sensorValue = analogRead(analogInPin); // A0ピンの値を読み取る
float voltage = sensorValue * (5.0 / 1023.0); // 電圧に変換
Serial.print("電圧:");
Serial.println(voltage);
delay(200); // 0.2秒間隔で測定
}
コメント
コメントを投稿