Go to file
Arnim Läuger ebd147b34f DHT11 read sometimes failed with checksum error (#2679)
* DHT11 read sometimes failed with checksum error.

The code assumed DHT11 devices only ever return zero in the temperature and humidity decimal fraction bytes. The datasheet doesn't guarantee this is the case, and by observation I have noticed that indeed the DHT11 may sometimes return another number, usually close to zero. This means that the code would fail with a checksum error, as the fraction bytes were not included when the checksum was calculated. These bytes are now taken into account and also returned as part of the measurement.

This also means that the related dht.read() function is non-functional. If you have a DHT11 device that returns a non-zero decimal part, dht.read() will interpret it as a DHT22 result and return the wrong measurement. For this reason dht.read() should be retired. This patch does not address this issue.
2019-02-23 22:03:21 +01:00
.github trailing spaces cleanup (#2659) 2019-02-17 18:26:29 +00:00
app DHT11 read sometimes failed with checksum error (#2679) 2019-02-23 22:03:21 +01:00
bin Update to sdk 2.2 2018-03-13 19:28:11 -04:00
docs Dummy modification to test webhook 2019-02-18 10:48:55 +01:00
ld trailing spaces cleanup (#2659) 2019-02-17 18:26:29 +00:00
local create luac.cross.{integer|float} (#2450) 2018-08-11 18:28:01 +01:00
lua_examples Revise fifo{,sock} (#2671) 2019-02-17 18:32:16 +00:00
lua_modules Revise fifo{,sock} (#2671) 2019-02-17 18:32:16 +00:00
msvc added MSVC project configuration for host-side tools (#2665) 2019-02-23 14:09:29 +00:00
sdk-overrides/include Refactor timer suspend portion of node.sleep (pmsleep) (#2287) 2018-04-13 21:41:14 +02:00
tools trailing spaces cleanup (#2659) 2019-02-17 18:26:29 +00:00
.gdbinit trailing spaces cleanup (#2659) 2019-02-17 18:26:29 +00:00
.gdbinitlua LFS patch updates following review 2018-04-19 16:27:47 +01:00
.gitignore Download pre-built toolchains (#2545) 2018-12-03 13:24:19 +11:00
.gitmodules Submodulify ucg and update to v1.5.2 (#2503) 2018-10-19 21:18:50 +01:00
.travis.yml Download pre-built toolchains (#2545) 2018-12-03 13:24:19 +11:00
CONTRIBUTING.md trailing spaces cleanup (#2659) 2019-02-17 18:26:29 +00:00
LICENSE update doc 2014-11-21 00:10:01 +08:00
Makefile makefile: add baud rate flash parameter and ESP8285 preset (#2641) 2019-02-18 14:18:47 +01:00
README.md trailing spaces cleanup (#2659) 2019-02-17 18:26:29 +00:00
mkdocs.yml A generic fifo and fifosock wrapper, under telnet and http server (#2650) 2019-02-16 13:51:40 +01:00
rtd-requirements.txt trailing spaces cleanup (#2659) 2019-02-17 18:26:29 +00:00

README.md

NodeMCU 2.2.1

Join the chat at https://gitter.im/nodemcu/nodemcu-firmware Build Status Documentation Status License

A Lua based firmware for ESP8266 WiFi SOC

NodeMCU is an open source Lua based firmware for the ESP8266 WiFi SOC from Espressif and uses an on-module flash-based SPIFFS file system. NodeMCU is implemented in C and is layered on the Espressif NON-OS SDK.

The firmware was initially developed as is a companion project to the popular ESP8266-based NodeMCU development modules, but the project is now community-supported, and the firmware can now be run on any ESP module.

Summary

  • Easy to program wireless node and/or access point
  • Based on Lua 5.1.4 (without debug & os modules)
  • Asynchronous event-driven programming model
  • more than 65 built-in modules
  • Firmware available with or without floating point support (integer-only uses less memory)
  • Up-to-date documentation at https://nodemcu.readthedocs.io

LFS support

In July 2018 support for a Lua Flash Store (LFS) was introduced. LFS allows Lua code and its associated constant data to be executed directly out of flash-memory; just as the firmware itself is executed. This now enables NodeMCU developers to create Lua applications with up to 256Kb Lua code and read-only constants executing out of flash. All of the RAM is available for read-write data!

Programming Model

The NodeMCU programming model is similar to that of Node.js, only in Lua. It is asynchronous and event-driven. Many functions, therefore, have parameters for callback functions. To give you an idea what a NodeMCU program looks like study the short snippets below. For more extensive examples have a look at the /lua_examples folder in the repository on GitHub.

-- a simple HTTP server
srv = net.createServer(net.TCP)
srv:listen(80, function(conn)
	conn:on("receive", function(sck, payload)
		print(payload)
		sck:send("HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n<h1> Hello, NodeMCU.</h1>")
	end)
	conn:on("sent", function(sck) sck:close() end)
end)
-- connect to WiFi access point
wifi.setmode(wifi.STATION)
wifi.sta.config{ssid="SSID", pwd="password"}

Documentation

The entire NodeMCU documentation is maintained right in this repository at /docs. The fact that the API documentation is maintained in the same repository as the code that provides the API ensures consistency between the two. With every commit the documentation is rebuilt by Read the Docs and thus transformed from terse Markdown into a nicely browsable HTML site at https://nodemcu.readthedocs.io.

Releases

Due to the ever-growing number of modules available within NodeMCU, pre-built binaries are no longer made available. Use the automated custom firmware build service to get the specific firmware configuration you need, or consult the documentation for other options to build your own firmware.

This project uses two main branches, master and dev. dev is actively worked on and it's also where PRs should be created against. master thus can be considered "stable" even though there are no automated regression tests. The goal is to merge back to master roughly every 2 months. Depending on the current "heat" (issues, PRs) we accept changes to dev for 5-6 weeks and then hold back for 2-3 weeks before the next snap is completed.

A new tag is created every time dev is merged back to master. They are listed in the releases section here on GitHub. Tag names follow the <SDK-version>-master_yyyymmdd pattern.

Support

See https://nodemcu.readthedocs.io/en/master/en/support/.

License

MIT © zeroday/nodemcu.com