diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -69,12 +69,12 @@ mqtt_host = "..." If desired, **sds011.lua** can be used to configure the SDS011 sensor. Currently, the following commands are supported -* `sds011.set_report_mode(active)` +* `port:write(sds011.set_report_mode(active))` * active == true: periodically report PM2.5 and PM10 values via UART * active == false: only report PM2.5 and PM10 values when queried -* `sds011.sleep(sleep)` +* `port:write(sds011.sleep(sleep))` * sleep == true: put sensor into sleep mode. The fan is turned off, no further measurements are performed * sleep == false: wake up sensor. -* `sds011.set_work_period(period)` +* `port:write(sds011.set_work_period(period))` * period == 0: continuous operation (about one measurement per second) * 0 < *period* ≤ 30: about one measurement every *period* minutes; fan turned off in-between |