12.CoreInkでOpenWeatherMap(3)


12.CoreInkでOpenWeatherMap(3)

説明

無料のワンコールAPI(https://openweathermap.org/api/one-call-api)で
  • 現在の天気
  • 1Hの分毎の降水量予報
  • 48Hの時間予報
  • 7日間の毎日の天気予報
  • 全国気象警報
  • 過去5日間の過去の気象データ
が提供され、前回は現在の天気を表示しましたが、今回は1H後までの分毎の予測降水量を表示します。

0分後から60分後までの61データを表示しています。
例)51分後(17:30)に9mm/Hの降水量があると予測しています。

スケッチ

xxxxxは、自分のwifiのSSID、wifiのパスワード、APIキーを入力します。自分で作った天気のアイコン"icon48-9.h"も必要です。

// 天気情報 OpenWeatherMap
// 確認は、https://openweathermap.org/city/1848354
// 関数一覧
// pushSprite   // LovyanGFXの1画面表示お決まり
// getJson      // jsonを得る
// drawCcurrent // 現在の天気の1画面をセット
// draw2        // 1時間後までの降水量の1画面をセット
// inkSet       // coreInkを使う時お決まり
// wifiSet      // wifiを使う時お決まり
// nihonSet     // 日本語を表示する時お決まり
// setup        //
// loop         //
#include "icon48-9.h"  // 天気マーク 同一ホルダに置く
#include <M5CoreInk.h>    // M5Stack CoreInk使用
#include <WiFi.h>         // wifi使用
#include <HTTPClient.h>   // httpと通信
#include <ArduinoJson.h>  // json型式で抽出
#include <efontEnableJaMini.h> // フォント 日本語ミニ
#include <efontFontData.h>     // efontのフォントデータ
#define LGFX_AUTODETECT  // init時に対応機種を自動認識
#include <LovyanGFX.hpp>       // 描画ライブラリ
#include <time.h>             // 時間表示
const char* ssid = "xxxxx";  // 自分のwifiのSSID
const char* password = "xxxxx";     // wifiのパスワード
const char* weatherURL = "https://api.openweathermap.org/data/2.5/onecall?lat=35.447781&lon=139.642502&units=metric&lang=ja&appid=xxxxx";
// 神奈川県 横浜 ワンコールAPI
DynamicJsonDocument weatherInfo(35000);  //
Ink_Sprite InkPageSprite(&M5.M5Ink);     // 定義
static LGFX_Sprite sprite;               // 定義
time_t t;  // システム時刻 time()関数によって得られる。<time.h>で定義。数値
struct tm *tm;  // 構造体の型を宣言,タグ名,構造体変数名
static const char *wd[7] = {"(日)", "(月)", "(火)", "(水)", "(木)", "(金)", "(土)"};
int dy = 17, upy = 0;  // 行刻み,上の行
int sheet = 2;  // 1:現在(current) 2:1分毎1Hの降水確率(minutely)
// 3:1H毎2日間(hourly) 4:1日毎7日間(daily)

// LovyanGFXの1画面表示関数
void pushSprite(Ink_Sprite *coreinkSprite, LGFX_Sprite *lgfxSprite) {
  coreinkSprite->clear();
  for (int y = 0; y < 200; y++) {    // 縦方向0-199
    for (int x = 0; x < 200; x++) {  // 横方向0-199
      uint16_t c = lgfxSprite->readPixel(x, y);
      if (c == 0x0000) {
        coreinkSprite->drawPix(x, y, 0);
      }
    }
  }
  coreinkSprite->pushSprite(); // アロー演算子
}

DynamicJsonDocument getJson() {     //
  DynamicJsonDocument doc(35000);   //
  if ((WiFi.status() == WL_CONNECTED)) {  // wifiが接続されていたら
    HTTPClient http;             // 定義
    http.begin(weatherURL);      // アクセスするURLを登録
    Serial.println(weatherURL);  // シリアルモニタに表示
    int httpCode = http.GET();//登録URLに、GETリクエスト送信
    if (httpCode > 0) {//HTTPのリターンコード。エラーの場合は負数。
      String jsonString = http.getString();
      Serial.print("HTTPコード="); Serial.println(httpCode);
      Serial.println(jsonString);        // json用文字列 長い
      deserializeJson(doc, jsonString);
      // 直列化されたデータをDynamicJsonDocumentの形に変換
    } else {
      Serial.println("エラー HTTPリクエスト");  // シリアルモニタに表示
    }
    http.end();                // TCPコネクションを切断しHTTP通信を終了
  }
  return doc;
}

void drawCcurrent(String infoWeather) {  // 1画面セットする
  DynamicJsonDocument doc(35000);        //
  deserializeJson(doc, infoWeather);     //

  String dt = doc["dt"]; // 現在の時刻(Unix,UTC)
  t = dt.toInt() + 9 * 3600;
  tm = localtime(&t);
  sprite.setCursor(5, upy);
  sprite.printf("%04d/%02d/%02d%s %02d:%02d現在",
                tm->tm_year + 1900, tm->tm_mon + 1,
                tm->tm_mday, wd[tm->tm_wday],
                tm->tm_hour, tm->tm_min);
  Serial.printf("現在%04d/%02d/%02d%s %02d:%02d",
                tm->tm_year + 1900, tm->tm_mon + 1,
                tm->tm_mday, wd[tm->tm_wday],
                tm->tm_hour, tm->tm_min);

  String sunrise = doc["sunrise"]; // 日の出時刻(Unix,UTC)
  t = sunrise.toInt() + 9 * 3600;
  tm = localtime(&t);
  upy = upy + dy; sprite.setCursor(10, upy);
  sprite.printf("日の出%01d:%02d", tm->tm_hour, tm->tm_min);
  Serial.printf(" 日の出%01d:%02d", tm->tm_hour, tm->tm_min);

  String sunset = doc["sunset"];  // 日没時間(Unix,UTC)
  t = sunset.toInt() + 9 * 3600 ;
  tm = localtime(&t);
  sprite.printf("   日没%02d:%02d", tm->tm_hour, tm->tm_min);
  Serial.printf(" 日没%02d:%02d\n", tm->tm_hour, tm->tm_min);

  String icon = doc["weather"][0]["icon"]; // 天気アイコンID
  upy = upy + dy; sprite.setCursor(10, upy);
  Serial.printf("天気(%s)", icon);
  int x = 70, y = 52, W = 48, H = 48;  // 天気マークの表示位置と大きさ
  if (icon == "01d" || icon == "01n") {
    sprite.pushImage(x, y, W, H, img48hare);    // 晴天(晴れ)
  } else if (icon == "02d" || icon == "02n") {  // or
    sprite.pushImage(x, y, W, H, img48hareKumori); // いくつかの雲:11-25%(晴曇り)
  } else if (icon == "03d" || icon == "03n") {
    sprite.pushImage(x, y, W, H, img48kumori);  // 散在する雲25-50%(曇り)
  } else if (icon == "04d" || icon == "04n") {
    sprite.pushImage(x, y, W, H, img48donyori); // 壊れた雲51-100%(どんより)
  } else if (icon == "09d" || icon == "09n") {
    sprite.pushImage(x, y, W, H, img48kumoriAme); // にわか雨(曇雨)
  } else if (icon == "10d" || icon == "10n") {
    sprite.pushImage(x, y, W, H, img48ame);     // 雨(雨)
  } else if (icon == "11d" || icon == "11n") {
    sprite.pushImage(x, y, W, H, img48kaminari); // 雷雨(雷)
  } else if (icon == "13d" || icon == "13n") {
    sprite.pushImage(x, y, W, H, img48yuki);    // 雪(雪)
  } else if (icon == "50d" || icon == "50n") {
    sprite.pushImage(x, y, W, H, img48moya);    // 靄(もや)
  }

  String main = doc["weather"][0]["main"]; // 概略気象
  Serial.printf("%s\n", main);

  String id = doc["weather"][0]["id"];      // 詳細気象ID
  Serial.printf("詳細(%s)", id);

  char buf[100];
  String description = doc["weather"][0]["description"]; // 詳細気象 日本語
  int len = description.length(); // 文字列長さ
  description.toCharArray(buf, len);    // string → char
  for (int i = 0; i < len; i++) {
    sprite.printf("%c", description[i]); // 日本語変数表示
  }
  Serial.printf("%s\n", description);

  String temp = doc["temp"];                   // 温度
  upy = upy + dy; sprite.setCursor(130, upy);
  sprite.printf("温度%2.0f℃", temp.toFloat());  // 文字列→単精度浮動小数点
  Serial.printf("温度%2.0f℃", temp.toFloat());

  String feels_like = doc["feels_like"];        // 体感温度
  upy = upy + dy; sprite.setCursor(130, upy);
  sprite.printf("体感%2.0f℃", feels_like.toFloat());
  Serial.printf(" 体感%2.0f℃", feels_like.toFloat());

  String dew_point = doc["dew_point"];      // 結露気温
  upy = upy + dy; sprite.setCursor(130, upy);
  sprite.printf("結露%2.0f℃", dew_point.toFloat());
  Serial.printf(" 結露%2.0f℃", dew_point.toFloat());

  sprite.setCursor(10, upy);                // 場所
  sprite.print("(横浜)");

  String humidity = doc["humidity"];       // 湿度(%)
  upy = upy + dy; sprite.setCursor(10, upy);
  sprite.printf("湿度%2.0f%%", humidity.toFloat());
  Serial.printf(" 湿度%2.0f%%", humidity.toFloat());

  String pressure = doc["pressure"];      // 海面気圧(hPa)
  sprite.printf("    海面%4.0fhPa", pressure.toFloat());
  Serial.printf(" 海面%4.0fhPa\n", pressure.toFloat());

  String wind_speed = doc["wind_speed"];   // 風速(m/s)
  upy = upy + dy; sprite.setCursor(10, upy);
  sprite.printf("風%2.0fm/s", wind_speed.toFloat());
  Serial.printf("風%2.0fm/s", wind_speed.toFloat());

  String wind_deg = doc["wind_deg"];        // 風向(方位角)
  int wind_degInt = wind_deg.toInt();
  String wind_houi;                          // 8方位
  if (wind_degInt < 22.5) {
    wind_houi = "北";
  } else if (wind_degInt < 67.5) {
    wind_houi = "北東";
  } else if (wind_degInt < 112.5) {
    wind_houi = "東";
  } else if (wind_degInt < 157.5) {
    wind_houi = "南東";
  } else if (wind_degInt < 202.5) {
    wind_houi = "南";
  } else if (wind_degInt < 247.5) {
    wind_houi = "南西";
  } else if (wind_degInt < 292.5) {
    wind_houi = "西";
  } else if (wind_degInt < 337.5) {
    wind_houi = "北西";
  } else {
    wind_houi = "北";
  }
  sprite.printf("(%s%d°)", wind_houi, wind_degInt);
  Serial.printf("(%s%d°)", wind_houi, wind_degInt);

  String clouds = doc["clouds"];                 // 曇量(%)
  sprite.setCursor(140, upy);
  sprite.printf(" 曇%2d%%", clouds.toInt());
  Serial.printf(" 曇量%2d%%\n", clouds.toInt());

  String uvi = doc["uvi"];                        // UV指数
  upy = upy + dy; sprite.setCursor(10, upy);
  sprite.printf("UV指数%4.1f", uvi.toFloat());
  Serial.printf("UV指数%4.1f", uvi.toFloat());

  String visibility = doc["visibility"];        // 可視性(m)
  sprite.printf("  可視%4.1fkm", visibility.toFloat() / 1000);
  Serial.printf(" 可視性%4.1fkm", visibility.toFloat() / 1000);

  String rain_1h = doc["hourly"][0]["rain"][0]["1h"];
  //利用可能な場合、過去1Hの降水量(mm)
  upy = upy + dy; sprite.setCursor(10, upy);
  if (rain_1h = "") {
    sprite.printf("降水なし");
    Serial.printf("降水なし");
  } else {
    sprite.printf("1H雨%.0dmm", rain_1h.toInt());
    Serial.printf("1H降水%.0dmm", rain_1h.toInt());
  }

  String snow_1h = doc["hourly"][0]["snow"][0]["1h"];
  //利用可能な場合、1H前からの積雪量(mm)
  if (snow_1h = "") {
    sprite.printf(" 積雪なし");
    Serial.printf(" 積雪なし\n");
  } else {
    sprite.printf(" 1H雪%.0dmm", snow_1h.toInt());
    Serial.printf(" 1H前からの積雪%.0dmm\n", snow_1h.toInt());
  }

  String wind_gust = doc["wind_gust"]; // 利用可能な場合、突風(m/s)
  upy = upy + dy; sprite.setCursor(10, upy);
  if (wind_gust = "") {
    sprite.printf("突風なし");
    Serial.printf(" 突風なし\n");
  } else {
    sprite.printf("突風%2.0fm/s", wind_gust.toFloat());
    Serial.printf(" 突風%2.0fm/s\n", wind_gust.toFloat());
  }
}

void draw2(String infoWeather) {  // 1H後までの降水量 1画面セットする
  DynamicJsonDocument doc(35000);        //
  deserializeJson(doc, infoWeather);     //
  String dt = doc[0]["dt"]; // 時刻(Unix,UTC)
  t = dt.toInt() + 9 * 3600;
  tm = localtime(&t);
  sprite.setCursor(0, 0);  // 1行目
  sprite.printf("%02d:%02dから60分後までの",
                tm->tm_hour, tm->tm_min);
  sprite.setCursor(70, dy); sprite.print("降水予測量(mm/H)");  // 2行目

  int x = 20, y = 20;              // 表示位置
  for (int i = 0; i <= 60; i++) {  // 61データ
    String dt = doc[i]["dt"];      // 時刻(Unix,UTC)
    t = dt.toInt() + 9 * 3600;
    tm = localtime(&t);
    Serial.printf("%04d/%02d/%02d%s %02d:%02d",
                  tm->tm_year + 1900, tm->tm_mon + 1,
                  tm->tm_mday, wd[tm->tm_wday],
                  tm->tm_hour, tm->tm_min);

    String precipitation = doc[i]["precipitation"]; // 降水予測量(mm)
    sprite.setCursor(x, y);  // 表示位置
    y = y + (dy - 2);        // 下へ
    if (y > 180) {           // 次の列へ
      y = 35;                // yの最上位置へ
      x = x + 30;            // 右へ
    }
    sprite.printf("%3d", precipitation.toInt());    // 画面表示
    Serial.printf(" %dmm\n", precipitation.toInt());//シリアルモニタに表示

  }
  int i = 0;                                    // 分
  for (y = 21; y <= 180; y = y + dy - 2) {      // 11文字表示
    sprite.setTextColor(TFT_WHITE, TFT_BLACK);  // 黒地に白字
    sprite.setCursor(0, y);                     // 表示位置
    sprite.printf("%2d", i);                    // 最左列の縦軸値
    i = i + 1;                                  // 次の分
  }
  i = 1;                                // 分
  for (x = 20; x <= 180; x = x + 30) {  // 6文字表示
    sprite.setCursor(x, 185);           // 表示位置
    sprite.printf("%3d", i * 10);       // 最下行の横軸値
    i = i + 1;                          // 次の分
  }
      sprite.setTextColor(TFT_BLACK, TFT_WHITE);  // 白地に黒字
  for (x = 17; x <= 180; x = x + 30) {            // 6本引く
    sprite.drawFastVLine(x, 35, 165, TFT_BLACK);  // 縦線(x,y,L,色)
  }
}

void inkSet() {                       // お決まり
  M5.begin();               // E-Ink,RTC,I2C,ブザーを初期化
  if (!M5.M5Ink.isInit()) {           // 初期化出来なければ
    Serial.println("エラー Ink Init"); // シリアルモニタに表示
    while (1) delay(100);             // ずっと待つ
  }
  M5.M5Ink.clear();                   // 画像クリア
  delay(1000);                        // 1秒待つ
  InkPageSprite.creatSprite(0, 0, 200, 200, false);
  // 画像領域を作成し、画面ドライバーから画像データバフを取得しない
}
void wifiSet() {                           // お決まり
  Serial.print(ssid);                      // シリアルモニタに表示
  Serial.print("に接続中");                 // シリアルモニタに表示
  WiFi.begin(ssid, password);              // ネット設定を初期化
  while (WiFi.status() != WL_CONNECTED) {  // 接続状態が接続完でない時
    delay(500);                            // 0.5秒待つ
    Serial.print(".");                     // シリアルモニタに表示
  }
  Serial.println("ok");                    // シリアルモニタに表示
}
void nihonSet() { // efont日本語16太 お決まり(16or24)
  sprite.setColorDepth(2);        // 2ビットパレットモードに設定
  sprite.createPalette();         // パレットモードにする?
  sprite.createSprite(200, 200);  // 200x200でスプライトを作成
  sprite.clear(TFT_WHITE);        // 全体の背景色を白
  sprite.setFont(&fonts::efontJA_16_b); // efont日本語16ドット太字
  sprite.setTextColor(TFT_BLACK, TFT_WHITE);  // 白地に黒字
}

void setup() {
  inkSet();                          // CoreInkの設定
  wifiSet();                         // wifiの設定
  nihonSet();                        // 日本語設定(efont16太)
  weatherInfo = getJson();           // json取得関数へ
  WiFi.disconnect(true);             // ネットワークから切断
  WiFi.mode(WIFI_OFF);               // wifiの動作モード
  Serial.print("wifi offか=");       // シリアルモニタに表示
  Serial.println(WiFi.status());     // wifiの接続状態
  // 0(WiFi.beginが呼出され3or4になるまで),1(使用可能なSSIDがない)
  // 2(スキャン完了),3(WiFi接続),4(すべての試行で接続失敗)
  // 5(接続が失われた),255(WiFiシールドがない)
}

void loop() {
  sheet = 2;
  if (sheet == 1) {
    String today = weatherInfo["current"];    // 現在(current)
    drawCcurrent(today);                      // 1画面設定関数へ
  } else if (sheet == 2) {
    String minutely = weatherInfo["minutely"];//1分毎1Hの降水量(minutely)
    draw2(minutely);
  } else if (sheet == 3) {
    String hourly = weatherInfo["hourly"];    // 1H毎2日間(hourly)
  } else if (sheet == 4) {
    String daily = weatherInfo["daily"];      // 1日毎7日間(daily)
  }
  pushSprite(&InkPageSprite, &sprite);        // 1画面表示関数へ
  delay(15000);                               // 15秒待つ
}