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.

[電子工作]999円で温度計を作ってみた

Last updated at Posted at 2020-03-22

概要

手元に温度センサーとLEDがあったので…
温度計を作ってみた。

部品

温度センサ:BME280
227円
image.png

表示機:TM1637が組み込まれた7セグLED
73円
image.png

コンピュータ:Arduino UNO互換機
699円
img.png

配線

スクリーンショット 2020-03-22 7.18.35.png

今回利用する温度センサはI2Cという通信を利用します。
近距離で利用するシリアル通信規格で、Arduino工作だとよく利用されるものです…
(多分通常の開発でも利用されるかと思いますが…)

ソースコード


# include <Arduino.h>
# include <BME280I2C.h>
# include <Wire.h>
# include <TM1637Display.h>
# define SERIAL_BAUD 115200

BME280I2C::Settings settings(
   BME280::OSR_X1,
   BME280::OSR_X1,
   BME280::OSR_X1,
   BME280::Mode_Forced,
   BME280::StandbyTime_1000ms,
   BME280::Filter_Off,
   BME280::SpiEnable_False,
   0x76
);
BME280I2C bme(settings);

# define CLK 2
# define DIO 3
TM1637Display display(CLK, DIO);

void setup() {
  Serial.begin(SERIAL_BAUD);
  while(!Serial) {}

  Wire.begin();
  while(!bme.begin()){
    Serial.println("not find BME280");
    delay(1000);
  }
  settings.tempOSR = BME280::OSR_X4;
  bme.setSettings(settings);

  uint8_t data[] = { 0xff, 0xff, 0xff, 0xff };
  display.setBrightness(0x0f);
  display.setSegments(data);
  delay(1000);
}

void loop() {
   float temp(NAN), hum(NAN), pres(NAN);
   BME280::TempUnit tempUnit(BME280::TempUnit_Celsius);
   BME280::PresUnit presUnit(BME280::PresUnit_Pa);

   bme.read(pres, temp, hum, tempUnit, presUnit);
   display.showNumberDec((unsigned int)(temp*100), false); //温度
//   display.showNumberDec((unsigned int)(hum*100), false); // 気圧
   Serial.print("Temp: ");
   Serial.print(temp);
   Serial.print("°"+ String(tempUnit == BME280::TempUnit_Celsius ? 'C' :'F'));
   Serial.print("\t\tHumidity: ");
   Serial.print(hum);
   Serial.print("% RH");
   Serial.print("\t\tPressure: ");
   Serial.print(pres);
   Serial.println(" Pa");
   delay(100);
}

github

動作確認

gif動画で上げても分かりにくかったので、Youtubeにて確認いただけると幸いです。
IMAGE ALT TEXT HERE

現在(2020/04/25) AMAZONで購入できるもの

温度センサ:BME280
¥750

表示機:TM1637が組み込まれた7セグLED
¥600

コンピュータ:Arduino UNO互換機
¥699

あると便利なもの

[ジャンパケーブル]
(https://www.amazon.co.jp/uxcell-%E3%82%B8%E3%83%A3%E3%83%B3%E3%83%97%E3%83%AF%E3%82%A4%E3%83%A4-XH2-54-40%E3%83%94%E3%83%B3%E3%83%AA%E3%83%9C%E3%83%B3%E3%83%AF%E3%82%A4%E3%83%A4%E3%83%BC-%E3%82%AA%E3%82%B9/dp/B07H2ZPLLN/ref=sr_1_2?__mk_ja_JP=%E3%82%AB%E3%82%BF%E3%82%AB%E3%83%8A&dchild=1&keywords=%E3%82%B8%E3%83%A3%E3%83%B3%E3%83%91%E3%82%B1%E3%83%BC%E3%83%96%E3%83%AB&qid=1587771174&s=diy&sr=1-2)¥762

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?