# M5Paper-Ambient-Monitor **Repository Path**: abcwonder/M5Paper-Ambient-Monitor ## Basic Information - **Project Name**: M5Paper-Ambient-Monitor - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-23 - **Last Updated**: 2021-08-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # M5Paper Ambient Monitor ![eyecatch](eyecatch.jpg) 一日ごとの電力消費量をグラフで表示します。 norifumiさんによる[M5StickC Wi-SUN HAT](https://github.com/rin-ofumi/m5stickc_wisun_hat) との併用を前提にしています。 ## セットアップ main.cppと同じディレクトリに `config.h` を追加します。 ``` cpp #ifndef _CONFIG_H_ #define _CONFIG_H_ #include const String AMBIENT_CHANNEL_ID = "[積算電力消費量のチャンネルID]"; const String AMBIENT_READ_KEY = "[積算電力消費量のRead Key]"; const char* WIFI_SSID = "[WiFi SSID]"; const char* WIFI_PASS = "[WiFi Pass]"; #endif ```