Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
9011815d
Commit
9011815d
authored
Oct 26, 2015
by
danicampora
Browse files
Options
Downloads
Patches
Plain Diff
docs/wipy: Fix bug in example code and add note regarding OTA.
parent
858ed6d2
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/wipy/general.rst
+7
-1
7 additions, 1 deletion
docs/wipy/general.rst
docs/wipy/tutorial/wlan.rst
+2
-2
2 additions, 2 deletions
docs/wipy/tutorial/wlan.rst
with
9 additions
and
3 deletions
docs/wipy/general.rst
+
7
−
1
View file @
9011815d
...
...
@@ -96,10 +96,15 @@ the WiPy by pressing the switch on the board, or by typing::
>>> import machine
>>> machine.reset()
Software updates can be found in: https://github.com/wipy/wipy/releases
Software updates can be found in: https://github.com/wipy/wipy/releases
(**Binaries.zip**).
It's always recommended to update to the latest software, but make sure to
read the **release notes** before.
.. note::
The ``bootloader.bin`` found inside ``Binaries.zip`` is there only for reference, it's not
needed for the Over The Air update.
In order to check your software version, do::
>>> import os
...
...
@@ -108,6 +113,7 @@ In order to check your software version, do::
If the version number is lower than the latest release found in
`the releases <https://github.com/wipy/wipy/releases>`_, go ahead and update your WiPy!
.. _wipy_boot_modes:
Boot modes and safe boot
...
...
This diff is collapsed.
Click to expand it.
docs/wipy/tutorial/wlan.rst
+
2
−
2
View file @
9011815d
...
...
@@ -50,10 +50,10 @@ IP address so that you can access it via telnet or FTP, use the following script
wlan.ifconfig(config=('192.168.178.107', '255.255.255.0', '192.168.178.1', '8.8.8.8'))
if not wlan.isconnected():
wlan.connect(net.ssid, auth=(net.sec, 'mywifikey'), timeout=5000)
# change the line below to match your network ssid, security and password
wlan.connect('mywifi', auth=(WLAN.WPA2, 'mywifikey'), timeout=5000)
while not wlan.isconnected():
machine.idle() # save power while waiting
break
.. note::
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment