|
| 1 | +--- |
| 2 | +title: 'Bluetooth® Low Energy, Wi-Fi® and Ethernet on Arduino Opta®' |
| 3 | +description: "Learn how to make use of the Arduino Opta's connectivity features" |
| 4 | +difficulty: beginner |
| 5 | +tags: |
| 6 | + - Wi-Fi® |
| 7 | + - Ethernet |
| 8 | + - Bluetooth® |
| 9 | + - Connectivity |
| 10 | +author: 'Benjamin Dannegård' |
| 11 | +libraries: |
| 12 | + - name: Arduino BLE |
| 13 | + url: https://www.arduino.cc/reference/en/libraries/arduinoble/ |
| 14 | +software: |
| 15 | + - ide-v1 |
| 16 | + - ide-v2 |
| 17 | + - web-editor |
| 18 | +hardware: |
| 19 | + - hardware/05.pro-solutions/solutions-and-kits/opta |
| 20 | +--- |
| 21 | + |
| 22 | +## Overview |
| 23 | + |
| 24 | +The Arduino Opta® is a powerful PLC device that has many features, allowing you to customize its use for your solution. Among these features are the standard connectivity features: Wi-Fi®, Ethernet and Bluetooth®. In this tutorial we will go through how to use these features with the Arduino IDE and the Arduino Opta®. |
| 25 | + |
| 26 | +## Goals |
| 27 | + |
| 28 | +- Learn how to use Bluetooth® Low Energy on the Arduino Opta® |
| 29 | +- Learn how to use Wi-Fi® on the Arduino Opta® |
| 30 | +- Learn how to use Ethernet on the Arduino Opta® |
| 31 | + |
| 32 | +### Required Hardware and Software |
| 33 | + |
| 34 | +- Arduino Opta® |
| 35 | +- Ethernet cable |
| 36 | +- [Arduino IDE](https://www.arduino.cc/en/software) |
| 37 | +- USB-C® cable (either USB-C to USB-A or USB-C to USB-C) |
| 38 | +- Wi-Fi® Access Point with Internet Access |
| 39 | + |
| 40 | +## Instructions |
| 41 | + |
| 42 | +### Setup With the Arduino IDE |
| 43 | + |
| 44 | +Using the Arduino IDE we can easily work with these peripherals. Some features have their own library that we can make use of. Make sure the latest version of the Arduino IDE is installed. The IDE can be downloaded [here](https://www.arduino.cc/en/software). |
| 45 | + |
| 46 | +Then we need to install the appropriate core for the Arduino Opta®. Go to **Tools > Board > Boards Manager**, in the boards manager section search for **Opta mbed** and install it. For more detailed instructions on setting up the Arduino Opta® with the Arduino IDE, have a look at the [Getting started with Opta tutorial](/tutorials/opta/getting-started). |
| 47 | + |
| 48 | +### Wi-Fi® |
| 49 | + |
| 50 | +The files necessary for using the Wi-Fi® on the Arduino Opta® are included in the core. To try it out, we can go to **File > Examples**, and under **Examples for Opta** we can find the **WiFi** section. Inside there is an example sketch called **WiFiWebClient**. Open this example sketch and fill out the WiFi details in the **arduino_secrets.h** tab. The sketch will make the Arduino Opta® connect to desired website defined within `char server[] = "example.com";` variable. If the connection is successful, it will then print the websites' HTML content to the serial monitor. If the sketch ran successfully, the output should look like the image below. |
| 51 | + |
| 52 | + |
| 53 | + |
| 54 | +If you want to take a deeper look at what features the **WiFi** library has to offer, [take a look at the API reference page](https://www.arduino.cc/reference/en/libraries/wifi/). |
| 55 | + |
| 56 | +### Ethernet |
| 57 | + |
| 58 | +The Arduino Opta® has a RJ45 ethernet port with a LED that will indicate the status of the connected cable. The files necessary for using Ethernet on the Arduino Opta® are included in the core. To try it out, we can go to **File > Examples**, and under **Examples for Opta** we can find the **Ethernet** section. Inside there is an example sketch called **WebClient**. Connect the Ethernet cable to the Arduino Opta® and upload the example. This example will function the same way as the one mentioned in the Wi-Fi® section. The device will connect to the website defined in the sketch and print the websites' HTML content in the serial monitor. If the sketch ran successfully, the output should look like the image below. |
| 59 | + |
| 60 | + |
| 61 | + |
| 62 | +If you want to take a deeper look at what features the **Ethernet** library has to offer, [take a look at the API reference page](https://www.arduino.cc/reference/en/libraries/ethernet/). |
| 63 | + |
| 64 | +### Modbus TCP Via Ethernet Port |
| 65 | + |
| 66 | +The Arduino Opta® can be configured to use Modbus TCP protocol, which basically runs on Ethernet instead of serial lines using TCP interface over RTU protocol. Thus the coverage distance is dependent on the capacity of the Ethernet cable. For example, Cat6a cable could be paired with Arduino Opta® to operate inside industrial environment. Modbus TCP is a variant of the Modbus family of simple, vendor-neutral communication protocols intended for supervision and control of automation equipment. Specifically, it covers the use of Modbus messaging in an intranet or internet environment using the TCP/IP protocols. The most common use of the protocols at this time is for Ethernet attachment of PLCs, I/O modules and gateways to other simple field buses or I/O networks. |
| 67 | + |
| 68 | +### Bluetooth® Low Energy |
| 69 | + |
| 70 | +To use the Bluetooth® feature, you will need to download the **ArduinoBLE** library in the Arduino IDE. Go into the **library manager** and search for **ArduinoBLE**. if you can't find it, try sorting by official libraries published by Arduino. Once ArduinoBLE library is installed, let's try and run a simple example. We will test with the sketch that scans for other Bluetooth® devices within range. The sketch will then print the found devices address, local name and the advertised service UUIDs, if present. You can find the example under **File > Examples > ArduinoBLE > Central**, the sketch is called **Scan**. When the sketch is running on the Opta, the output on the serial monitor should look something like the image below. |
| 71 | + |
| 72 | + |
| 73 | + |
| 74 | +If you want to take a deeper look at what features the **ArduinoBLE** library has to offer, [take a look at the API reference page](https://www.arduino.cc/reference/en/libraries/arduinoble/). |
| 75 | + |
| 76 | +## Conclusion |
| 77 | + |
| 78 | +Now you have a better overview of the connectivity features on the Arduino Opta® and how to use them. We went through how to use the different connectivity features and what libraries are required for them. By running all the example sketches on our device, we have made sure that the modules are all working and everything is up to date. |
| 79 | + |
| 80 | +### Next Steps |
| 81 | + |
| 82 | +Now that you know how to use the connectivity features of the device, have a look at our other tutorials and try to combine the different features. The Arduino Opta® uses the same architecture as the Portanta H7, it could therefore be a good idea to take a look at the Portenta H7 tutorials. Such as the using your [device as a Wi-Fi® access point tutorial](https://docs.arduino.cc/tutorials/portenta-h7/wifi-access-point) or the [Bluetooth® Low Energy connectivity with a phone tutorial](https://docs.arduino.cc/tutorials/portenta-h7/ble-connectivity). |
0 commit comments