1. 23 Dec, 2015 1 commit
  2. 21 Dec, 2015 1 commit
  3. 18 Dec, 2015 1 commit
  4. 16 Dec, 2015 1 commit
    • Johny Mattsson's avatar
      Reworked module registration, removed modules.h · 4e8ef87d
      Johny Mattsson authored
      Module creation & registration now made a lot simpler. In essence,
      each module file is now self-contained and only needs a
      
        NODEMCU_MODULE(MYNAME, "myname", myname_map, luaopen_myname);
      
      line to both be automatically recognised by the Lua initialization
      as well as honor the LUA_USE_MODULES_MYNAME #define.
      4e8ef87d
  5. 28 Nov, 2015 1 commit
  6. 19 Nov, 2015 1 commit
  7. 12 Nov, 2015 1 commit
  8. 09 Nov, 2015 1 commit
  9. 08 Nov, 2015 1 commit
  10. 03 Nov, 2015 2 commits
  11. 01 Nov, 2015 1 commit
  12. 31 Oct, 2015 1 commit
  13. 27 Oct, 2015 1 commit
    • devsaurus's avatar
      simplify spi api · 9444ae28
      devsaurus authored
      duplex_mode configuration enables/disables receiving with spi.send()
      spi.send_recv removed
      9444ae28
  14. 25 Oct, 2015 1 commit
  15. 18 Oct, 2015 3 commits
  16. 12 Oct, 2015 12 commits
  17. 09 Oct, 2015 1 commit
  18. 03 Oct, 2015 1 commit
  19. 30 Sep, 2015 1 commit
  20. 19 Sep, 2015 2 commits
  21. 17 Sep, 2015 4 commits
  22. 10 Sep, 2015 1 commit
    • Robert Foss's avatar
      Added ENDUSER_SETUP module. · e2ada487
      Robert Foss authored
      The module will start a SoftAP, DNS, HTTP server acting as a captive portal.
      The portal will have the SSID SetupGadget and will serve a website where
      credentials for the end users WLAN can be submitted.
      
      Once valid credentials have been submitted and used to connect to the
      local WLAN this module will stop.
      
      This module requires USE_DNS to enabled in dhcpserver.h
      e2ada487