0
0

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.

Arduino UNOとMCP3425でなんちゃってluxを測る(MCP3425A0T-E/CH 16bitADC)(明るさ)

Last updated at Posted at 2021-04-11

1.SCLとSDAを接続、プルアップも忘れずに
2.電源の接続
3.下記のソースコードを書き込む
4.コンパイル実行で表示されたら終了
5.おわり

参考
https://blog.goo.ne.jp/sircs-gid/e/1fb2f6e382a19a9d342561206c4bfeb4


# include <Wire.h>
# define ADD 0x68

float Volts;
float Vref = 2.048 ;
float lux;
 
void setup() {
    Wire.begin();         //i2cの初期化
    Serial.begin(9600);

    // 7 *(1)待ち
    // 6 *(0)
    // 5 *(0)
    // 4 (0)ワンショット,*(1)連続
    // 3 | (00)12ビット,(01)14ビット
    // 2 | *(10)16ビット
    // 1 I *(00)x1,(01)x2
    // 0 I (10)x4,(11)x8

    //初期値の書き込み
    Wire.beginTransmission(ADD);
        Wire.write(0b10011000); //16bit 15sps PGA x1
    Wire.endTransmission();
}

int read_data() {

    //2文字の読み込み
    Wire.requestFrom(ADD, 2);

    //戻し
    return ( (Wire.read() << 8 ) + Wire.read() );
}
 
void loop() {
    Volts = read_data() * Vref / 32767.0 ;
    //Serial.println(String(Volts,5));
    lux = 200.0 * Volts;
    Serial.println(String(lux,5));
    delay(1000);
}


mcp3425_uno_lux_1.jpg

mcp3425_uno_lux_2.jpg

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?