27 lines
874 B
Org Mode
27 lines
874 B
Org Mode
#+TITLE: WeeCfg simple web interface to save settings on wemos
|
|
|
|
* Introduction
|
|
This should be used with a companion wemos app which servers up these pages, you will need to copy the files to your sketch data folder and upload them to the wemos from the arduino software or using esptool.
|
|
|
|
[[./resources/public/example.png]]
|
|
|
|
* Requirements
|
|
To build or run this tool you will need clojure installed to download the requirements and generate the javascript.
|
|
|
|
If your editing the project you can use cider or similar to jack in and live edit the page.
|
|
|
|
* Building
|
|
If your not using cider or just want to do things manually use these commands.
|
|
|
|
#+BEGIN_SRC sh
|
|
clojure -m figwheel.main --build dev --repl
|
|
#+END_SRC
|
|
|
|
#+BEGIN_SRC sh
|
|
clojure -m figwheel.main --build prod --repl
|
|
#+END_SRC
|
|
|
|
once running you should be able to see the app under the url below.
|
|
http://localhost:9500/
|
|
|