-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
40e50c5
commit f1e82b1
Showing
3 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
25 changes: 25 additions & 0 deletions
25
micropython/examples/plasma_2350/breakouts/rm2-breakout-catfacts.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
""" | ||
Get a cat fact from t'internet! | ||
You will need to add your wireless SSID and password to secrets.py (and save this file to your Plasma) | ||
""" | ||
|
||
import network | ||
import requests | ||
from secrets import WIFI_SSID, WIFI_PASSWORD | ||
from time import sleep | ||
|
||
# Specify the pins that that wireless module is connected to | ||
# The pins below are for a Plasma 2350 with a RM2 breakout connected via SP/CE | ||
wlan = network.WLAN(network.STA_IF, pin_on=8, pin_out=11, pin_in=11, pin_wake=11, pin_clock=10, pin_cs=9) | ||
|
||
# connect to wifi | ||
wlan.active(True) | ||
wlan.connect(WIFI_SSID, WIFI_PASSWORD) | ||
while wlan.isconnected() is False: | ||
print('Waiting for connection...') | ||
sleep(1) | ||
|
||
request = requests.get('http://catfact.ninja/fact').json() | ||
fact = request['fact'] | ||
print('Cat fact!') | ||
print(fact) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
WIFI_SSID = 'ssid_goes_here' | ||
WIFI_PASSWORD = 'password_goes_here' |