0
1

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.

M5Stack Core2: 温度湿度センサーを使う

Last updated at Posted at 2021-09-01

M5Stack Core2 で Grove の温度湿度センサーを使う方法です。
Port A に Grove を挿します。
IMG_20210901_162335.jpg

temperature_humidity/temperature_humidity.ino
// ---------------------------------------------------------------
/*
	temperature_humidity.ino

						Sep/01/2021
*/
// ---------------------------------------------------------------
# include <M5Core2.h>
# include "DHT.h"

# define DHTTYPE DHT22
# define DHTPIN 33 
DHT dht(DHTPIN, DHTTYPE);

int count = 0;
// ---------------------------------------------------------------
void setup()
{
	M5.begin(true, true, true, false);
	M5.Lcd.setTextSize(4);
	M5.Lcd.println("Temperature");
	M5.Lcd.println("Humidity");

	while (!Serial);
	M5.lcd.setBrightness(80);

	Serial.println("Sep/01/2021 AM 10:00 ***");
}

// ---------------------------------------------------------------
void display_proc(float temp_hum[])
{
	Serial.print("temperature = ");
	Serial.print(temp_hum[1]);
	Serial.print(" C  ");
	Serial.print("humidity = ");
	Serial.print(temp_hum[0]);
	Serial.println(" %");

	M5.Lcd.setTextSize(4);
	M5.Lcd.setCursor(50,100);
	M5.Lcd.print(temp_hum[1]);
	M5.Lcd.println(" C");
  
	M5.Lcd.setCursor(50,160);
	M5.Lcd.print(temp_hum[0]);
	M5.Lcd.println(" %");
}

// ---------------------------------------------------------------
void loop()
{
	float temp_hum[2] = {0,0};

	Serial.print("count = " + String(count) + "  ");

	if (!dht.readTempAndHumidity(temp_hum))
		{
		display_proc(temp_hum);
		}
	else
		{
		Serial.println("ERROR! *** readTempAndHumidity ***");
		}

	delay(5000);

	count++;
}

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?