You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/04.pro/shields/portenta-vision-shield/tutorials/user-manual/content.md
+12-3
Original file line number
Diff line number
Diff line change
@@ -831,7 +831,7 @@ The **Portenta Vision Shield - Ethernet** gives you the possibility of connectin
831
831
832
832
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.
833
833
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.
835
835
836
836
```python
837
837
import network
@@ -886,6 +886,8 @@ Run the script and the current date and time will be printed in the OpenMV IDE S
886
886
887
887

888
888
889
+
***If you want to learn more, check the other Ethernet examples in the OpenMV IDE.***
890
+
889
891
## LoRa® (ASX00026)
890
892
891
893
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
896
898
897
899
***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.***
898
900
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.
900
909
901
910
```python
902
911
from lora import*
@@ -951,7 +960,7 @@ Find the frequency used in your country for **The Things Network** on this [list
951
960
```python
952
961
lora = Lora(band=BAND_AU915, poll_ms=60000, debug=False) # change the band with yours e.g BAND_US915
953
962
```
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.
0 commit comments