Skip to content

Commit 76a7207

Browse files
committed
typo fixed
1 parent ae8f3d7 commit 76a7207

File tree

1 file changed

+12
-3
lines changed
  • content/hardware/04.pro/shields/portenta-vision-shield/tutorials/user-manual

1 file changed

+12
-3
lines changed

content/hardware/04.pro/shields/portenta-vision-shield/tutorials/user-manual/content.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ The **Portenta Vision Shield - Ethernet** gives you the possibility of connectin
831831

832832
First, connect the Vision Shield - Ethernet to the Portenta H7. Now connect the USB-C® cable to the Portenta H7 and your computer. Lastly, connect the Ethernet cable to the Portenta Vision Shield's Ethernet port and your router or modem.
833833

834-
Now you are ready to test the connectivity with the following Python script. This example lets you know if an Ethernet cable is connected successfully to the shield.
834+
Now you are ready to test the connectivity with the following MicroPython script. This example lets you know if an Ethernet cable is connected successfully to the shield.
835835

836836
```python
837837
import network
@@ -886,6 +886,8 @@ Run the script and the current date and time will be printed in the OpenMV IDE S
886886

887887
![Ethernet connection example script](assets/ntp.png)
888888

889+
***If you want to learn more, check the other Ethernet examples in the OpenMV IDE.***
890+
889891
## LoRa® (ASX00026)
890892

891893
The **Vision Shield - LoRa®** can extend our project connectivity by leveraging it LoRa® module for long-range communication in remote areas with a lack of internet access. Powered by the Murata CMWX1ZZABZ module which contains an STM32L0 processor along with a Semtech SX1276 Radio.
@@ -896,7 +898,14 @@ To test the LoRa® connectivity, first, connect the Vision Shield - LoRa® to th
896898

897899
***Follow this [guide](https://docs.arduino.cc/tutorials/portenta-vision-shield/things-network-openmv) to learn how to set up and create your __end device__ on The Things Network.***
898900

899-
The following Python script lets you connect to The Things Network using LoRaWAN® and send a `Hello World` message to it.
901+
Important hardware LoRa® configurations are listed below:
902+
903+
| **Setting** | **Compatibility** |
904+
| :-----------------: | :---------------: |
905+
| LoRaWAN MAC Version | V1.0.2 |
906+
| Class | A or C |
907+
908+
The following MicroPython script lets you connect to The Things Network using LoRaWAN® and send a `Hello World` message to it.
900909

901910
```python
902911
from lora import *
@@ -951,7 +960,7 @@ Find the frequency used in your country for **The Things Network** on this [list
951960
```python
952961
lora = Lora(band=BAND_AU915, poll_ms=60000, debug=False) # change the band with yours e.g BAND_US915
953962
```
954-
Define your application `appEUI` and `appKey` in the Python script so the messages are correctly authenticated by the network server.
963+
Define your application `appEUI` and `appKey` in the MicroPython script so the messages are correctly authenticated by the network server.
955964

956965
```python
957966
appEui = "*****************" # now called JoinEUI

0 commit comments

Comments
 (0)