From 9949cdda772201e72cca351cc0a5ffa5150a1694 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Fri, 21 Apr 2017 19:47:48 +0900 Subject: [PATCH 1/2] fixed #1 --- README.md | 50 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 49 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index df3bd58..d754e64 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,50 @@ # k2ping -Ping monitoring device (pingによる死活監視装置) + +[![Build Status](https://travis-ci.org/kou029w/k2ping.svg?branch=master)](https://travis-ci.org/kou029w/k2ping) + +安価に製作できるpingでの死活監視装置です。 + +[![Thumbnail](https://i.ytimg.com/vi/O8T0brdBYlI/maxresdefault.jpg)](https://www.youtube.com/watch?v=O8T0brdBYlI) + +## Getting Started + +### Prerequisites + +以下の材料を用意し、組み立てる必要があります。 + +- [WeMos D1 (ESP8266)](https://www.wemos.cc/product/d1.html) +- [LCD Keypad Shield For Arduino](https://www.dfrobot.com/product-51.html) +- USB to Micro-B Cable +- [PlatformIO Core](http://docs.platformio.org/en/latest/installation.html) がインストールされた PC or Mac + +``` +git clone git@github.com:kou029w/k2ping +cd k2ping +``` + +あらかじめ自分のWi-Fi環境に合わせて `src/k2ping.ino` の `network-name` と `pass-to-network` を変更する必要があります。 + +```arduino +  WiFi.begin("network-name", "pass-to-network"); +``` + +### Installing + +``` +pio lib install 1526 # Install the LiquidCrystal library. +pio run --target upload +``` + +## Authors + +* **Kohei Watanabe** [kou029w](https://github.com/kou029w) + +See also the list of [contributors](https://github.com/kou029w/k2ping/contributors) who participated in this project. + +## License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. + +## Acknowledgments + +* [dancol90/ESP8266Ping](https://github.com/dancol90/ESP8266Ping) を参考にさせて頂きました。作者に感謝します。 From 1a8e00e74aefbcd28e9ec2b2ef1c1ef4b8f798af Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Fri, 21 Apr 2017 19:50:52 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Build=20Status=E3=82=92develop=E3=83=96?= =?UTF-8?q?=E3=83=A9=E3=83=B3=E3=83=81=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d754e64..6780cb9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # k2ping -[![Build Status](https://travis-ci.org/kou029w/k2ping.svg?branch=master)](https://travis-ci.org/kou029w/k2ping) +[![Build Status](https://travis-ci.org/kou029w/k2ping.svg?branch=develop)](https://travis-ci.org/kou029w/k2ping) 安価に製作できるpingでの死活監視装置です。