We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45dd198 commit 5d92bfeCopy full SHA for 5d92bfe
adafruit_espatcontrol/adafruit_espatcontrol_wifimanager.py
@@ -29,6 +29,7 @@ class ESPAT_WiFiManager:
29
A class to help manage the Wifi connection
30
"""
31
32
+ # pylint: disable=too-many-arguments
33
def __init__(
34
self,
35
esp: ESP_ATcontrol,
@@ -44,6 +45,8 @@ def __init__(
44
45
:param status_pixel: (Optional) The pixel device - A NeoPixel or DotStar (default=None)
46
:type status_pixel: NeoPixel or DotStar
47
:param int attempts: (Optional) Unused, only for compatibility for old code
48
+ :param bool enterprise: (Optional) If True, try to connect to Enterprise AP
49
+ :param bool debug: (Optional) Print debug messages during operation
50
51
# Read the settings
52
self._esp = esp
0 commit comments