Created
July 1, 2020 19:36
-
-
Save darianbjohnson/a0ae54dbe37f73d8ceb58aebf86c68dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NOTE: Make sure you've created your secrets.py file before running this example | |
# 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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment