Skip to content
  • Paul Sokolovsky's avatar
    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