Skip to content

Commit aaa5631

Browse files
authored
Merge pull request #17 from brentru/update-comments-for-pixel
Change neopixel comments to pixel
2 parents f405288 + 3ad86b3 commit aaa5631

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

adafruit_esp32spi/adafruit_esp32spi_wifimanager.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def connect(self):
9494

9595
def get(self, url, **kw):
9696
"""
97-
Pass the Get request to requests and update Status NeoPixel
97+
Pass the Get request to requests and update status LED
9898
9999
:param str url: The URL to retrieve data from
100100
:param dict data: (Optional) Form data to submit
@@ -113,7 +113,7 @@ def get(self, url, **kw):
113113

114114
def post(self, url, **kw):
115115
"""
116-
Pass the Post request to requests and update Status NeoPixel
116+
Pass the Post request to requests and update status LED
117117
118118
:param str url: The URL to post data to
119119
:param dict data: (Optional) Form data to submit
@@ -131,7 +131,7 @@ def post(self, url, **kw):
131131

132132
def put(self, url, **kw):
133133
"""
134-
Pass the put request to requests and update Status NeoPixel
134+
Pass the put request to requests and update status LED
135135
136136
:param str url: The URL to PUT data to
137137
:param dict data: (Optional) Form data to submit
@@ -150,7 +150,7 @@ def put(self, url, **kw):
150150

151151
def patch(self, url, **kw):
152152
"""
153-
Pass the patch request to requests and update Status NeoPixel
153+
Pass the patch request to requests and update status LED
154154
155155
:param str url: The URL to PUT data to
156156
:param dict data: (Optional) Form data to submit
@@ -169,7 +169,7 @@ def patch(self, url, **kw):
169169

170170
def delete(self, url, **kw):
171171
"""
172-
Pass the delete request to requests and update Status NeoPixel
172+
Pass the delete request to requests and update status LED
173173
174174
:param str url: The URL to PUT data to
175175
:param dict data: (Optional) Form data to submit
@@ -188,7 +188,7 @@ def delete(self, url, **kw):
188188

189189
def ping(self, host, ttl=250):
190190
"""
191-
Pass the Ping request to the ESP32, update Status NeoPixel, return response time
191+
Pass the Ping request to the ESP32, update status LED, return response time
192192
193193
:param str host: The hostname or IP address to ping
194194
:param int ttl: (Optional) The Time To Live in milliseconds for the packet (default=250)
@@ -216,7 +216,7 @@ def pixel_status(self, value):
216216
"""
217217
Change Status NeoPixel if it was defined
218218
219-
:param value: The value to set the Board's Status NeoPixel to
219+
:param value: The value to set the Board's status LED to
220220
:type value: int or 3-value tuple
221221
"""
222222
if self.statuspix:

0 commit comments

Comments
 (0)