summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2024-01-14 08:05:50 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2024-01-14 08:05:50 +0100
commitb4c43ebd0099a4e535ab133d5be1401c383172f7 (patch)
tree673698f1143bb74c7eb9802f36425ef9df658551 /README.md
parent9adc68ef5c3fd7b4f64777ba857514b76e1043fe (diff)
Specify station_cfg as single-line dict
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 312be21..bf31b86 100644
--- a/README.md
+++ b/README.md
@@ -64,8 +64,7 @@ The sensor performs a CO₂ measurement every one to five seconds, depending on
To use it, you need to create a **config.lua** file with WiFI and MQTT settings:
```lua
-station_cfg.ssid = "..."
-station_cfg.pwd = "..."
+station_cfg = {ssid = "...", pwd = "..."}
mqtt_host = "..."
```