summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2024-01-18 20:33:17 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2024-01-18 20:33:17 +0100
commit811e2ccefdfb96cbc4ec90ec530ca971fa52eade (patch)
treef907c039f97b8b70efcc247a939b1b3df1738118 /README.md
parent5a7888855da087504e8e523a6b79819c529f1830 (diff)
Add flash/upload instructions, sample firmware image, and nodemcu-uploader
Diffstat (limited to 'README.md')
-rw-r--r--README.md31
1 files changed, 30 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4da29ab..7f606c1 100644
--- a/README.md
+++ b/README.md
@@ -18,8 +18,9 @@ ccs811.lua has been tested with Lua 5.1 on NodeMCU firmware 3.0.1 (Release
Most practical applications (such as the example in init.lua) also need the
following modules.
-* hdc1080
* gpio
+* hdc1080
+* http
* mqtt
* node
* tmr
@@ -88,6 +89,34 @@ influx_attr = "..."
Readings will be published as `ccs811[influx_attr] eco2_ppm=%d,tvoc_ppb=%d,status=%d,error=%d`.
Unless `influx_attr = ''`, it must start with a comma, e.g. `influx_attr = ',device=' .. device_id`.
+## Flashing
+
+This repository contains a NodeMCU build that provides the required modules.
+You can flash it using e.g. esptool:
+
+```bash
+esptool write_flash 0x00000 firmware/nodemcu-release-12-modules-2024-01-18-19-25-08-float.bin
+```
+
+This is required just once; changes to Lua files generally do not mandate
+flashing a new NodeMCU image.
+
+After flashing, the firmware will need a few seconds to initialize the
+filesystem. You can then upload the Python code, e.g. using nodemcu-uploader:
+
+```bash
+ext/nodemcu-uploader/nodemcu-uploader.py upload *.lua
+```
+
+Afterwards, you can check whether everything works using the serial connection,
+e.g.
+
+```bash
+pyserial-miniterm --dtr 0 --rts 0 /dev/ttyUSB0 115200
+```
+
+You may need to adjust the `/dev/tty` device name.
+
## Images
![](https://finalrewind.org/projects/esp8266-nodemcu-ccs811/media/hass.png)