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 e01c762 commit 4190bc3Copy full SHA for 4190bc3
adafruit_esp32spi/adafruit_esp32spi_wifimanager.py
@@ -112,6 +112,7 @@ def connect_normal(self):
112
"""
113
Attempt a regular style WiFi connection
114
115
+ failure_count = 0
116
while not self._esp.is_connected:
117
try:
118
if self.debug:
@@ -132,6 +133,7 @@ def connect_enterprise(self):
132
133
134
Attempt an enterprise style WiFi connection
135
136
137
self._esp.wifi_set_network(bytes(self.ent_ssid, 'utf-8'))
138
self._esp.wifi_set_entidentity(bytes(self.ent_ident, 'utf-8'))
139
self._esp.wifi_set_entusername(bytes(self.ent_user, 'utf-8'))
0 commit comments