From 5ca1f77d25106d5e92797f684f1e492e38c216af Mon Sep 17 00:00:00 2001 From: caternuson Date: Thu, 18 Apr 2019 15:54:40 -0700 Subject: [PATCH 1/2] add simpletest --- examples/pyportal_simpletest.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/examples/pyportal_simpletest.py b/examples/pyportal_simpletest.py index e69de29..020080b 100644 --- a/examples/pyportal_simpletest.py +++ b/examples/pyportal_simpletest.py @@ -0,0 +1,22 @@ +# NOTE: Make sure you've created your secrets.py file before running this example +# see here: https://learn.adafruit.com/adafruit-pyportal/internet-connect#whats-a-secrets-file-17-2 +import board +from adafruit_pyportal import PyPortal + +# Set a data source URL +TEXT_URL = "http://wifitest.adafruit.com/testwifi/index.html" + +# Create the PyPortal object +pyportal = PyPortal(url=TEXT_URL, status_neopixel=board.NEOPIXEL) + +# Set display to show REPL +board.DISPLAY.show(None) + +# Go get that data +print("Fetching text from", TEXT_URL) +data = pyportal.fetch() + +# Print out what we got +print('-'*40) +print(data) +print('-'*40) From 240942970025801c03786d30d88e61d12463c208 Mon Sep 17 00:00:00 2001 From: caternuson Date: Thu, 18 Apr 2019 16:10:19 -0700 Subject: [PATCH 2/2] linted comment --- examples/pyportal_simpletest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pyportal_simpletest.py b/examples/pyportal_simpletest.py index 020080b..7b87fdc 100644 --- a/examples/pyportal_simpletest.py +++ b/examples/pyportal_simpletest.py @@ -1,5 +1,5 @@ # NOTE: Make sure you've created your secrets.py file before running this example -# see here: https://learn.adafruit.com/adafruit-pyportal/internet-connect#whats-a-secrets-file-17-2 +# https://learn.adafruit.com/adafruit-pyportal/internet-connect#whats-a-secrets-file-17-2 import board from adafruit_pyportal import PyPortal