From 788b577d657178e787616e8ca8e2670864936792 Mon Sep 17 00:00:00 2001 From: cpq Date: Sun, 27 Dec 2020 01:32:58 +0000 Subject: [PATCH] Add README --- examples/esp8266/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 examples/esp8266/README.md diff --git a/examples/esp8266/README.md b/examples/esp8266/README.md new file mode 100644 index 00000000..324abb9e --- /dev/null +++ b/examples/esp8266/README.md @@ -0,0 +1,18 @@ +# An example ESP8266 application + +To build this application, follow these steps: + +1. Make sure you have Docker installed +2. Clone whole mongoose repository on your machine: + ```sh + git clone https://github.com/cesanta/mongoose.git + ``` +3. Start command line or terminal, and go into the example's directory: + ```sh + cd mongoose/examples/esp8266 + ``` +4. Run `make`. This invokes a Docker-based build. A firmware will be built + in the `src/build/` directory: + ```sh + make example + ```