Skip to content

bytebarista/the_pad

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

the_pad

PyPI version

the_pad

Have a look at our tutorial to get started!

Install

You can install as package from pip.

  1. First connect to the REPL with a serial terminal.
  2. Connect to wifi
import network

SSID = <WIFI SSID>
PWD = <WIFI PASSWORD>

wlan = network.WLAN(network.STA_IF)
wlan.active(True)
if not wlan.isconnected():
    print('connecting to network...')
    wlan.connect(SSID, PWD)
    while not wlan.isconnected():
        pass
print('network config:', wlan.ifconfig())
import upip
upip.install('micropython-the-pad')

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages