Skip to content
Snippets Groups Projects
Select Git revision
  • dualcore
  • ch3/leds
  • wip-bootstrap default
  • ch3/time
  • master
5 results

modnetwork.c

Blame
    • Paul Sokolovsky's avatar
      a49c1606
      esp8266/modnetwork: Introduce interface .config() method. · a49c1606
      Paul Sokolovsky authored
      Allows to set (in case keyword args are given) or query (in case a single
      "symbolic keyword" (a string, value is the same as keyword)) arbitrary
      interface paramters (i.e. extensible and adaptable to various hardware).
      
      Example usage:
      
      ap_if = network.WLAN(1)
      ap_if.config(essid="MicroPython on Air")
      print(ap_if.config("essid"))
      a49c1606
      History
      esp8266/modnetwork: Introduce interface .config() method.
      Paul Sokolovsky authored
      Allows to set (in case keyword args are given) or query (in case a single
      "symbolic keyword" (a string, value is the same as keyword)) arbitrary
      interface paramters (i.e. extensible and adaptable to various hardware).
      
      Example usage:
      
      ap_if = network.WLAN(1)
      ap_if.config(essid="MicroPython on Air")
      print(ap_if.config("essid"))