@@ -94,7 +94,7 @@ def connect(self):
94
94
95
95
def get (self , url , ** kw ):
96
96
"""
97
- Pass the Get request to requests and update Status NeoPixel
97
+ Pass the Get request to requests and update status LED
98
98
99
99
:param str url: The URL to retrieve data from
100
100
:param dict data: (Optional) Form data to submit
@@ -113,7 +113,7 @@ def get(self, url, **kw):
113
113
114
114
def post (self , url , ** kw ):
115
115
"""
116
- Pass the Post request to requests and update Status NeoPixel
116
+ Pass the Post request to requests and update status LED
117
117
118
118
:param str url: The URL to post data to
119
119
:param dict data: (Optional) Form data to submit
@@ -131,7 +131,7 @@ def post(self, url, **kw):
131
131
132
132
def put (self , url , ** kw ):
133
133
"""
134
- Pass the put request to requests and update Status NeoPixel
134
+ Pass the put request to requests and update status LED
135
135
136
136
:param str url: The URL to PUT data to
137
137
:param dict data: (Optional) Form data to submit
@@ -150,7 +150,7 @@ def put(self, url, **kw):
150
150
151
151
def patch (self , url , ** kw ):
152
152
"""
153
- Pass the patch request to requests and update Status NeoPixel
153
+ Pass the patch request to requests and update status LED
154
154
155
155
:param str url: The URL to PUT data to
156
156
:param dict data: (Optional) Form data to submit
@@ -169,7 +169,7 @@ def patch(self, url, **kw):
169
169
170
170
def delete (self , url , ** kw ):
171
171
"""
172
- Pass the delete request to requests and update Status NeoPixel
172
+ Pass the delete request to requests and update status LED
173
173
174
174
:param str url: The URL to PUT data to
175
175
:param dict data: (Optional) Form data to submit
@@ -188,7 +188,7 @@ def delete(self, url, **kw):
188
188
189
189
def ping (self , host , ttl = 250 ):
190
190
"""
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
192
192
193
193
:param str host: The hostname or IP address to ping
194
194
:param int ttl: (Optional) The Time To Live in milliseconds for the packet (default=250)
@@ -216,7 +216,7 @@ def pixel_status(self, value):
216
216
"""
217
217
Change Status NeoPixel if it was defined
218
218
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
220
220
:type value: int or 3-value tuple
221
221
"""
222
222
if self .statuspix :
0 commit comments