Skip to content

Commit 1fee9ce

Browse files
author
brentru
committed
neopixel->pixel in comments
1 parent 109eba6 commit 1fee9ce

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 pixel
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 pixel
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 pixel
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 pixel
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 pixel
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 pixel, 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)
@@ -206,7 +206,7 @@ def pixel_status(self, value):
206206
"""
207207
Change Status NeoPixel if it was defined
208208
209-
:param value: The value to set the Board's Status NeoPixel to
209+
:param value: The value to set the Board's status pixel to
210210
:type value: int or 3-value tuple
211211
"""
212212
if self.statuspix:

0 commit comments

Comments
 (0)