ESP8266 Weather Station Color インストール方法
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
[[FrontPage]]
#ref(./170128b0.jpg,around,right,25%)
* ESP8266 Weather Station Color インストール方法 [#qd23fe...
** ESP8266 Weather Station Colorの概要 [#uaba652b]
- スイスの [[Daniel Eichhorn:https://blog.squix.org/about...
- wundergroundから気象情報を取得し、天気、気温、3日分の天...
- ESP8266 + ILI9341を使用した小型液晶 という構成で動作
-- 元記事: [[ESP8266 Weather Station Color code published...
** 入手先 [#j51ff2ea]
- githubからダウンロードしてください
-- [[squix78/esp8266-weather-station-color: ESP8266 Weath...
** ライブラリのインストール [#p22057e7]
- 以下の3つのライブラリでインストールされていないものがあ...
-- [[squix78/esp8266-weather-station:https://github.com/s...
-- [[adafruit/Adafruit_ILI9341:https://github.com/adafrui...
-- [[adafruit/Adafruit-GFX-Library:https://github.com/ada...
-- Arduino IDEの「メニュー スケッチ/ライブラリをインクル...
** Wunderground API keyの入手 [#s9a21749]
- このプログラムを動作させるにはWunderground のAPI Keyが...
-- [[Wunderground API keyの入手方法]]
** プログラムの修正 [#tce53685]
- 自分の環境に合わせて、settings.h を修正します。
*** 端子の設定 [#i1e8a371]
- HSES-LCD24用に端子情報を設定します。
- settings.h 25,26行
#define TFT_DC 15
#define TFT_CS 2
*** TimeZonoの設定 [#u7e150a6]
- settings.h 29行
const float UTC_OFFSET = 9;
*** Wundergroundの設定 [#x97c50ba]
- settings.h 32-36行
const boolean IS_METRIC = true;
const String WUNDERGRROUND_API_KEY = "<前項で取得したWun...
const String WUNDERGRROUND_LANGUAGE = "EN";
const String WUNDERGROUND_COUNTRY = "JP";
const String WUNDERGROUND_CITY = "<天候を表示させたい都...
- どの都市名が使用できるかは、[[wunderground:https://www....
** WiFi ManagerでWiFiの設定を入力 [#y795870d]
- このプログラムは WiFi Managerを使用しており、無線LANのs...
- これらの情報が未設定あるいは接続できない場合、プログラ...
- 参考:
-- [[ESP8266 Wi-Fi SSID、パスワードのオンライン設定 - IoT...
-- [[ESP8266 がアクセスポイントとなってSSID・パスワードの...
終了行:
[[FrontPage]]
#ref(./170128b0.jpg,around,right,25%)
* ESP8266 Weather Station Color インストール方法 [#qd23fe...
** ESP8266 Weather Station Colorの概要 [#uaba652b]
- スイスの [[Daniel Eichhorn:https://blog.squix.org/about...
- wundergroundから気象情報を取得し、天気、気温、3日分の天...
- ESP8266 + ILI9341を使用した小型液晶 という構成で動作
-- 元記事: [[ESP8266 Weather Station Color code published...
** 入手先 [#j51ff2ea]
- githubからダウンロードしてください
-- [[squix78/esp8266-weather-station-color: ESP8266 Weath...
** ライブラリのインストール [#p22057e7]
- 以下の3つのライブラリでインストールされていないものがあ...
-- [[squix78/esp8266-weather-station:https://github.com/s...
-- [[adafruit/Adafruit_ILI9341:https://github.com/adafrui...
-- [[adafruit/Adafruit-GFX-Library:https://github.com/ada...
-- Arduino IDEの「メニュー スケッチ/ライブラリをインクル...
** Wunderground API keyの入手 [#s9a21749]
- このプログラムを動作させるにはWunderground のAPI Keyが...
-- [[Wunderground API keyの入手方法]]
** プログラムの修正 [#tce53685]
- 自分の環境に合わせて、settings.h を修正します。
*** 端子の設定 [#i1e8a371]
- HSES-LCD24用に端子情報を設定します。
- settings.h 25,26行
#define TFT_DC 15
#define TFT_CS 2
*** TimeZonoの設定 [#u7e150a6]
- settings.h 29行
const float UTC_OFFSET = 9;
*** Wundergroundの設定 [#x97c50ba]
- settings.h 32-36行
const boolean IS_METRIC = true;
const String WUNDERGRROUND_API_KEY = "<前項で取得したWun...
const String WUNDERGRROUND_LANGUAGE = "EN";
const String WUNDERGROUND_COUNTRY = "JP";
const String WUNDERGROUND_CITY = "<天候を表示させたい都...
- どの都市名が使用できるかは、[[wunderground:https://www....
** WiFi ManagerでWiFiの設定を入力 [#y795870d]
- このプログラムは WiFi Managerを使用しており、無線LANのs...
- これらの情報が未設定あるいは接続できない場合、プログラ...
- 参考:
-- [[ESP8266 Wi-Fi SSID、パスワードのオンライン設定 - IoT...
-- [[ESP8266 がアクセスポイントとなってSSID・パスワードの...
ページ名: