Skip to content

Change neopixel comments to pixel #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions adafruit_esp32spi/adafruit_esp32spi_wifimanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def connect(self):

def get(self, url, **kw):
"""
Pass the Get request to requests and update Status NeoPixel
Pass the Get request to requests and update status LED

:param str url: The URL to retrieve data from
:param dict data: (Optional) Form data to submit
Expand All @@ -113,7 +113,7 @@ def get(self, url, **kw):

def post(self, url, **kw):
"""
Pass the Post request to requests and update Status NeoPixel
Pass the Post request to requests and update status LED

:param str url: The URL to post data to
:param dict data: (Optional) Form data to submit
Expand All @@ -131,7 +131,7 @@ def post(self, url, **kw):

def put(self, url, **kw):
"""
Pass the put request to requests and update Status NeoPixel
Pass the put request to requests and update status LED

:param str url: The URL to PUT data to
:param dict data: (Optional) Form data to submit
Expand All @@ -150,7 +150,7 @@ def put(self, url, **kw):

def patch(self, url, **kw):
"""
Pass the patch request to requests and update Status NeoPixel
Pass the patch request to requests and update status LED

:param str url: The URL to PUT data to
:param dict data: (Optional) Form data to submit
Expand All @@ -169,7 +169,7 @@ def patch(self, url, **kw):

def delete(self, url, **kw):
"""
Pass the delete request to requests and update Status NeoPixel
Pass the delete request to requests and update status LED

:param str url: The URL to PUT data to
:param dict data: (Optional) Form data to submit
Expand All @@ -188,7 +188,7 @@ def delete(self, url, **kw):

def ping(self, host, ttl=250):
"""
Pass the Ping request to the ESP32, update Status NeoPixel, return response time
Pass the Ping request to the ESP32, update status LED, return response time

:param str host: The hostname or IP address to ping
:param int ttl: (Optional) The Time To Live in milliseconds for the packet (default=250)
Expand All @@ -206,7 +206,7 @@ def pixel_status(self, value):
"""
Change Status NeoPixel if it was defined

:param value: The value to set the Board's Status NeoPixel to
:param value: The value to set the Board's status LED to
:type value: int or 3-value tuple
"""
if self.statuspix:
Expand Down