Skip to content

Commit a13d22f

Browse files
makuk66danicampora
authored andcommitted
docs/wipy: Fix several typos and change some pyboard to WiPy.
1 parent 1950295 commit a13d22f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs/wipy/general.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Telnet REPL
3737
-----------
3838

3939
Linux stock telnet works like a charm (also on OSX), but other tools like putty
40-
work quite too. The default credentials are: **user:** ``micro``, **password:** ``python``.
40+
work quite well too. The default credentials are: **user:** ``micro``, **password:** ``python``.
4141
See :ref:`network.server <network.server>` for info on how to change the defaults.
4242
For instance, on a linux shell (when connected to the WiPy in AP mode)::
4343

@@ -157,7 +157,7 @@ alive. This can be overridden through the :mod:`wipy` module::
157157

158158
There are currently 2 kinds of errors that you might see:
159159

160-
1. If the heartbeat LED flashes quickly, then a Python script(eg ``main.py``)
160+
1. If the heartbeat LED flashes quickly, then a Python script (eg ``main.py``)
161161
has an error. Use the REPL to debug it.
162162
2. If the heartbeat LED stays on, then there was a hard fault, you cannot
163163
recover from this, the only way out is to press the reset switch.

docs/wipy/quickref.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ See the :mod:`machine` module::
1818
machine.freq() # get the CPU frequency
1919
machine.unique_id() # return the 6-byte unique id of the board (the WiPy's MAC address)
2020

21-
machine.idle() # average curernt decreases to (~12mA), any interrupts wakes it up
21+
machine.idle() # average current decreases to (~12mA), any interrupts wake it up
2222
machine.sleep() # everything except for WLAN is powered down (~950uA avg. current)
2323
# wakes from Pin, RTC or WLAN
2424
machine.deepsleep() # deepest sleep mode, MCU starts from reset. Wakes from Pin and RTC.
@@ -187,7 +187,7 @@ See :ref:`network.WLAN <network.WLAN>` and :mod:`machine`. ::
187187
wifi = WLAN(mode=WLAN.STA)
188188
# go for fixed IP settings
189189
wifi.ifconfig(config=('192.168.0.107', '255.255.255.0', '192.168.0.1', '8.8.8.8'))
190-
wifi.scan() # scan for available netrworks
190+
wifi.scan() # scan for available networks
191191
wifi.connect(ssid='mynetwork', auth=(WLAN.WPA2, 'mynetworkkey'))
192192
while not wifi.isconnected():
193193
pass
@@ -205,7 +205,7 @@ See :ref:`network.server <network.server>` ::
205205

206206
from network import server
207207

208-
# init with new user, pass word and seconds timeout
208+
# init with new user, password and seconds timeout
209209
server = server.init(login=('user', 'password'), timeout=60)
210210
server.timeout(300) # change the timeout
211211
server.timeout() # get the timeout

docs/wipy/tutorial/intro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Because the WiPy/expansion board does not have a housing it needs a bit of care:
1717
If you experience a lot of static electricity in your area (eg dry and cold
1818
climates), take extra care not to shock the WiPy. If your WiPy came
1919
in a ESD bag, then this bag is the best way to store and carry the
20-
pyboard as it will protect it agains static discharges.
20+
WiPy as it will protect it agains static discharges.
2121

2222
As long as you take care of the hardware, you should be okay. It's almost
2323
impossible to break the software on the WiPy, so feel free to play around
@@ -46,7 +46,7 @@ Powering by an external power source
4646
The WiPy can be powered by a battery or other external power source.
4747

4848
**Be sure to connect the positive lead of the power supply to VIN, and
49-
ground to GND. There is no polarity protection on the pyboard so you
49+
ground to GND. There is no polarity protection on the WiPy so you
5050
must be careful when connecting anything to VIN.**
5151

5252
- When powering via ``VIN``:

docs/wipy/tutorial/repl.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ MicroPython prompt, i.e. ``>>>``. Let's make sure it is working with the obliga
8282

8383
In the above, you should not type in the ``>>>`` characters. They are there to
8484
indicate that you should type the text after it at the prompt. In the end, once
85-
you have entered the text ``print("hello pyboard!")`` and pressed Enter, the output
85+
you have entered the text ``print("hello WiPy!")`` and pressed Enter, the output
8686
on your screen should look like it does above.
8787

88-
If you already know some python you can now try some basic commands here.
88+
If you already know some Python you can now try some basic commands here.
8989

9090
If any of this is not working you can try either a hard reset or a soft reset;
9191
see below.

0 commit comments

Comments
 (0)