From bccdff594bc63f7c778547e32f8bc0dba49db460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20S=C3=B6derby?= <35461661+karlsoderby@users.noreply.github.com> Date: Mon, 29 Aug 2022 13:47:47 +0200 Subject: [PATCH] [MKC-629] Fix MKR 1000 inconsistency --- .../mkr-1000-hosting-a-webserver.md | 8 ++++---- .../mkr-1000-mqtt-device-to-device.md | 8 ++++---- .../mkr-1000-scan-networks/mkr-1000-scan-networks.md | 8 ++++---- .../mkr-1000-web-server-ap-mode.md | 10 +++++----- ...necting-an-arduino-mkr-wifi-1010-to-aws-iot-core.md | 2 +- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/mkr-1000-hosting-a-webserver.md b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/mkr-1000-hosting-a-webserver.md index 943f9e5922..b2e1f56d7b 100644 --- a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/mkr-1000-hosting-a-webserver.md +++ b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/mkr-1000-hosting-a-webserver.md @@ -1,5 +1,5 @@ --- -title: 'Host a Web Server on the MKR 1000' +title: 'Host a Web Server on the MKR 1000 WiFi' difficulty: advanced compatible-products: [mkr-1000-wifi] description: 'Learn how to access your board through a browser on the same Wi-Fi network.' @@ -21,7 +21,7 @@ software: ## Introduction -In this tutorial, we will use the MKR 1000 board to set up a simple web server, using the **WiFi101** library. The web server will be used as an interface for our board, where we will create two buttons to remotely turn ON or OFF an LED. +In this tutorial, we will use the MKR 1000 WiFi board to set up a simple web server, using the **WiFi101** library. The web server will be used as an interface for our board, where we will create two buttons to remotely turn ON or OFF an LED. This tutorial is a great starting point for any maker interested in making applications connected to the Internet. @@ -37,7 +37,7 @@ This tutorial is a great starting point for any maker interested in making appli ### Circuit -Follow the wiring diagram below to connect the LED to the MKR 1000 board. +Follow the wiring diagram below to connect the LED to the MKR 1000 WiFi board. ![Circuit with board, resistor and LED.](assets/MKR1000_T2_IMG01.png) @@ -223,7 +223,7 @@ Copy the IP address and enter it in a browser. Now, we should see a very empty p ![Accessing the board from the browser.](assets/MKR1000_T2_IMG04.png) -When interacting with the links, you should see the LED, connected to pin 2, turn on and off depending on what you click. Now we have successfully created a way of interacting with our MKR 1000 board remotely. +When interacting with the links, you should see the LED, connected to pin 2, turn on and off depending on what you click. Now we have successfully created a way of interacting with our MKR 1000 WiFi board remotely. ### Troubleshoot diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/mkr-1000-mqtt-device-to-device.md b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/mkr-1000-mqtt-device-to-device.md index ac8a758eb6..81cbdbff37 100644 --- a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/mkr-1000-mqtt-device-to-device.md +++ b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/mkr-1000-mqtt-device-to-device.md @@ -2,7 +2,7 @@ title: 'Sending Data over MQTT' difficulty: advanced compatible-products: [mkr-1000-wifi] -description: 'Learn how to use the MQTT protocol to send data between two MKR 1000 boards.' +description: 'Learn how to use the MQTT protocol to send data between two MKR 1000 WiFi boards.' tags: - IoT - MQTT @@ -23,9 +23,9 @@ software: ## Introduction -In this tutorial, we will create a setup that allows a MKR 1000 board to send data to another MKR1000 board, using MQTT (Message Queuing Telemetry Transport). The sender device, simply publishes a message to a broker service, which then can be subscribed to by a receiver device. +In this tutorial, we will create a setup that allows a MKR 1000 WiFi board to send data to another MKR1000 board, using MQTT (Message Queuing Telemetry Transport). The sender device, simply publishes a message to a broker service, which then can be subscribed to by a receiver device. -The data we will send is simply random readings from the analog inputs on the MKR 1000 board, but can easily be replaced by any sensor. This tutorial uses the broker [test.mosquitto.org](https://test.mosquitto.org/), an open-source service, free to use by anyone. +The data we will send is simply random readings from the analog inputs on the MKR 1000 WiFi board, but can easily be replaced by any sensor. This tutorial uses the broker [test.mosquitto.org](https://test.mosquitto.org/), an open-source service, free to use by anyone. This tutorial uses the [ArduinoMqttClient](https://github.com/arduino-libraries/ArduinoMqttClient) and [WiFi101](https://www.arduino.cc/en/Reference/WiFi101) libraries. @@ -331,7 +331,7 @@ void onMqttMessage(int messageSize) { If everything was successful during the upload, we now have a **publisher** and **subscriber** device. Next, we need to open the Serial Monitor for each board, one at a time. This will initialize the sketch. Since we can only have one Serial Monitor open at one time, we will need to switch the ports manually. Using only one computer can be a bit tedious, as we can never view the Serial Monitor of both devices at the same time. -In this tutorial, we are using two MKR 1000 boards. When switching between the ports, we can see them listed as COM12 and COM3. +In this tutorial, we are using two MKR 1000 WiFi boards. When switching between the ports, we can see them listed as COM12 and COM3. ![Selecting the right port.](assets/MKR1000_T3_IMG06.png) diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/mkr-1000-scan-networks.md b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/mkr-1000-scan-networks.md index 908eb24ef7..94bd7a29c5 100644 --- a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/mkr-1000-scan-networks.md +++ b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/mkr-1000-scan-networks.md @@ -1,5 +1,5 @@ --- -title: 'MKR 1000 Wi-Fi Network Scan' +title: 'MKR 1000 WiFi Network Scan' difficulty: intermediate compatible-products: [mkr-1000-wifi] description: 'Learn how to setup your board to scan nearby Wi-Fi networks.' @@ -39,7 +39,7 @@ The goals of this project are: ## Scanning Networks -Scanning for Wi-Fi networks is a quite straightforward process. A device with a Wi-Fi module such as smart-phones, computers or development boards such as the MKR 1000, search their surroundings, and get a response from nearby networks. +Scanning for Wi-Fi networks is a quite straightforward process. A device with a Wi-Fi module such as smart-phones, computers or development boards such as the MKR 1000 WiFi, search their surroundings, and get a response from nearby networks. The device looking for a network or the client, sends a probe request, while nearby networks send probe responses. These responses contains information such as name of the network, signal strength in dBm (decibel milli-watts) and encryption type. @@ -68,7 +68,7 @@ This tutorial requires no additional circuit. - `WiFi.SSID()` - retrieves SSID (network name) of found network. - `WiFi.RSSI()` - retrieves RSSI (signal strength) of found network (measured in dBm). -5. We can now upload the code that can be found in the snippet below to our MKR 1000 board. You can also find this code in the editor, by navigating to **File > Examples > WiFi101 > ScanNetworks**. +5. We can now upload the code that can be found in the snippet below to our MKR 1000 WiFi board. You can also find this code in the editor, by navigating to **File > Examples > WiFi101 > ScanNetworks**. ```cpp #include @@ -199,6 +199,6 @@ If the code is not working, there are some common issues we can troubleshoot: ## Conclusion -In this tutorial we have created a simple Wi-Fi scanner, that has printed all available networks within range of our MKR 1000 board. This feature exists virtually in any device that can connect to the Internet, and can be quite a good tool to experiment with, for example how far our devices can be from a gateway (router) to work. +In this tutorial we have created a simple Wi-Fi scanner, that has printed all available networks within range of our MKR 1000 WiFi board. This feature exists virtually in any device that can connect to the Internet, and can be quite a good tool to experiment with, for example how far our devices can be from a gateway (router) to work. diff --git a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/mkr-1000-web-server-ap-mode.md b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/mkr-1000-web-server-ap-mode.md index 24505a9fe0..42c736a761 100644 --- a/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/mkr-1000-web-server-ap-mode.md +++ b/content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/mkr-1000-web-server-ap-mode.md @@ -1,5 +1,5 @@ --- -title: 'Web Server Access Point (AP) Mode with MKR 1000' +title: 'Web Server Access Point (AP) Mode with MKR 1000 WiFi' difficulty: advanced compatible-products: [mkr-1000-wifi] description: 'Learn how to set up your board as an access point, allowing other devices to connect to it.' @@ -25,7 +25,7 @@ software: ## Introduction -In this tutorial, we will be creating something called an Access Point. An access point is practically a wireless local area network, which in this tutorial will **not be connected to the Internet**. This can be a practical setup for projects that have no access to the internet, but we still want to control and monitor our MKR 1000 board wirelessly. We will be using functionalities from the **WiFi101** library, and we will set up a basic configuration that allows us to control an LED (on or off) and do a reading on one of the analog pins. +In this tutorial, we will be creating something called an Access Point. An access point is practically a wireless local area network, which in this tutorial will **not be connected to the Internet**. This can be a practical setup for projects that have no access to the internet, but we still want to control and monitor our MKR 1000 WiFi board wirelessly. We will be using functionalities from the **WiFi101** library, and we will set up a basic configuration that allows us to control an LED (on or off) and do a reading on one of the analog pins. ## Hardware & Software Needed @@ -39,7 +39,7 @@ In this tutorial, we will be creating something called an Access Point. An acces ### Circuit -Follow the wiring diagram below to connect the LED to the MKR 1000 board. +Follow the wiring diagram below to connect the LED to the WiFi board. ![Circuit with board, resistor and LED.](assets/MKR1000_T5_IMG01.png) @@ -55,7 +55,7 @@ ___ This tutorial barely uses any external hardware: we only need an LED that we will control remotely. But the most interesting aspects lie in the library we are going to use: **WiFi101**. This library can be used for many different connectivity projects, where we can both connect to WiFi, make GET requests and - as we will explore in this tutorial - create an access point (AP) and hosting a web server that we can connect to. -We will go through the following steps in order to create a web server on our MKR 1000: +We will go through the following steps in order to create a web server on our MKR 1000 WiFi: - First, we need to initialize the **WiFi101** library. - Then, we need to create the credentials of our access point by entering a name for our network. @@ -241,7 +241,7 @@ Once we are connected to the Wi-Fi, we can enter the URL (IP address of the boar ![Different browser views.](assets/MKR1000_T5_IMG05.png) -When interacting with the links, you should see the LED, connected to pin 2, turn on and off depending on what you click, and now we have successfully created a way of interacting with our MKR 1000 board remotely. Whenever we click on these links, the Serial Monitor will print information regarding the requests, as the image below shows. +When interacting with the links, you should see the LED, connected to pin 2, turn on and off depending on what you click, and now we have successfully created a way of interacting with our MKR 1000 WiFi board remotely. Whenever we click on these links, the Serial Monitor will print information regarding the requests, as the image below shows. ![Serial Monitor output of a client connecting.](assets/MKR1000_T5_IMG06.png) diff --git a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core.md b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core.md index dad5898927..5360ba0a30 100644 --- a/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core.md +++ b/content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core/securely-connecting-an-arduino-mkr-wifi-1010-to-aws-iot-core.md @@ -1,6 +1,6 @@ --- title: "Securely Connecting an Arduino MKR WiFi 1010 to AWS IoT Core" -description: "In this tutorial, you'll learn how to connect your Arduino MKR WiFi 1010 (or MKR 1000) board securely to AWS IoT Core." +description: "In this tutorial, you'll learn how to connect your Arduino MKR WiFi 1010 (or MKR 1000 WiFi) board securely to AWS IoT Core." coverImage: "assets/blob_fXIeojA4b3.png" tags: [aws, iot, mkr] author: "Arduino_Genuino"