Wifky!
Arduinoセンサ MPL115A2 気圧センサ
https://www.qoosky.io/products/f051ebd8da
MPL115A2用ライブラリ
https://garretlab.web.fc2.com/arduino/libraries/MPL115A2/index.html
MPL115A2.zip
#include <Wire.h>
#include <MPL115A2.h>
void setup () {
Serial.begin(9600);
MPL115A2.begin();
}
void loop () {
Serial.println(MPL115A2.read());
delay(1000);
}