2021年10月1日金曜日

arduino➂npn,melody-IC,圧,曲げ,フォトリフレクタ,sound,rtc,I2C-convertor

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

https://www.petitmonte.com/robot/howto_transistor_npn.html NPNの基礎がくわしい

(3端子メロディ)ーーーーーーーーーーーーーーーーーーーーーーー

 const int MELODY_PIN = 5;

void setup() {

  // put your setup code here, to run once:

pinMode(MELODY_PIN, OUTPUT);

}

void loop() {

  // put your main code here, to run repeatedly:

  digitalWrite(MELODY_PIN, HIGH);

  delay(5000);

  digitalWrite(MELODY_PIN, LOW);

  delay(5000);

}

(圧センサ)ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

Arduino実践講座 p244 

20KΩとなっているのは10KΩでもでけた 

(曲げセンサは、そのままできた)ーーーーーーーーーーーーーーーーーーーーーー 

Arduino実践講座 p94 でOK

(フォトリフレクタ)ーーーーーーーーーーーーーーーーーーー

Arduino実践講座 p80 でOK 150のかわりに100Ωででけた

(音量)ーーーーーーーーーーーーーーーーーーーーーー

Arduino実践講座 p176 でOK

(RTC)ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

amazon手持ちは、esp32に準じたがセットは

http://jh7ubc.web.fc2.com/arduino/Arduino_RTC_DS1307.html でOKだった

読み出しだけもesp32に準じるが、wire(21,22)のかわりのwire(4,5)は不要だった 

なんでやろ? わからんが。。。。。

(I2Cレベルコンバータ)ーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

arduino電子工作 実践篇 p181のI2Cレベルコンバータとちがい

秋月のFxma https://www.petitmonte.com/robot/howto_fxma2102.html

(+)の電源を共通にするのは間違い なくてうごいた (ー)だけ共通でOK

もしくはスイッチサイエンスのそれをつかう いずれも成功

ただし本書にあるBME280.hのcppファイルの<arduino.h>を<Arduino.h>に

書き直す必要があった スイッチサイエンスのそれが断然使いやすかった

0 件のコメント:

コメントを投稿