1. 20 Jan, 2016 1 commit
  2. 04 Jan, 2016 1 commit
  3. 03 Jan, 2016 2 commits
  4. 16 Dec, 2015 2 commits
    • 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
    • TerryE's avatar
      Major cleanup of module registration pass 2. · b773290b
      TerryE authored
      carrying on Johny's edits as per my comments on #810
      b773290b
  5. 12 Dec, 2015 1 commit
    • Johny Mattsson's avatar
      Major cleanup of module registration. · 6b6456be
      Johny Mattsson authored
      As per #810 & #796, only LUA_OPTIMIZE_MEMORY=2 & MIN_OPT_LEVEL=2 are
      supported when building. This commit effects that limitation.
      
      With this change modules/auxmods.h no longer needs to be updated for
      every new module, nor do module writers need to cater for a hypothetical
      LUA_OPTIMIZE_MEMORY < 2 scenario.
      6b6456be
  6. 06 Nov, 2015 1 commit
  7. 05 Nov, 2015 1 commit
  8. 04 Nov, 2015 3 commits
  9. 12 Oct, 2015 1 commit
  10. 31 Aug, 2015 1 commit
  11. 14 Jul, 2015 2 commits
  12. 10 Jul, 2015 1 commit
  13. 03 Jul, 2015 1 commit
  14. 27 Jun, 2015 1 commit
  15. 24 Jun, 2015 1 commit
  16. 01 Jun, 2015 2 commits
  17. 23 May, 2015 1 commit
  18. 20 May, 2015 1 commit
  19. 18 May, 2015 1 commit
  20. 12 May, 2015 5 commits
  21. 11 May, 2015 4 commits
    • dnc40085's avatar
      Added description to wifi_station_listap · aca2b772
      dnc40085 authored
      aca2b772
    • dnc40085's avatar
      cf54f855
    • dnc40085's avatar
      Copied changes from dev branch, commit f13c5c61 from Wayne Bartnick · 5b375cfe
      dnc40085 authored
       wifi.sta.config (wifi_station_config):
      
      - range checking password length (8~64)
      
      wifi.ap.config (wifi_ap_config):
      - range checking ssid length (1~32)
      - range checking pwd length (8~64)
      - new params:
        - auth: wifi.OPEN, wifi.WPA_PSK, wifi.WPA2_PSK, wifi.WPA_WPA2_PSK
          - default WITH pwd: wifi.WPA_WPA2_PSK
          - default WITHOUT pwd: wifi.OPEN
        - channel: 1~13 (default: 6)
        - hidden: 0/1 (default: 0)
        - max: 1~4 (default: 4)
        - beacon: 100~60000ms (default: 100)
      
      wifi.ap.getclient (wifi_ap_listclient):
      - returns table(mac,ip) of all connected clients
      
      wifi.ap.dhcp:
      - new submodule
      - config (wifi_ap_dhcp_config), returns start/end ips
        - params:
          - start (e.g., "192.168.1.100")
        - end ip calculated from wifi.ap.config.max
      - start (wifi_ap_dhcp_start), returns boolean
      - stop (wifi_ap_dhcp_stop), returns boolean
      5b375cfe
    • dnc40085's avatar
      minor change to wifi.sta.config() · c6c8bd84
      dnc40085 authored
      c6c8bd84
  22. 09 May, 2015 3 commits
  23. 07 May, 2015 2 commits
  24. 29 Apr, 2015 1 commit