Skip to content

Instantly share code, notes, and snippets.

@uDude
Created February 15, 2018 04:12
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save uDude/8a8226daa8e43d83e0b5e06609ba7661 to your computer and use it in GitHub Desktop.
Elements compiled into nodemcu modules
I periodically tinker with nodemcu firmware for the ESP chips by espressif. One of the most frustrating things is the difference between the documented methods and constants and the actual methods and constants.
The first helper function I define is a `help` function named `h()`:
```
function h(mod) for k,v in pairs(mod) do print(k) end end
```
-- Example Use#
```
h(node)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment