Skip to content

Commit f0a25b2

Browse files
authored
Merge pull request #527 from arduino/karlsoderby/mkr1000-fixes
[MKC-629] Fix MKR 1000 inconsistency
2 parents 59df9ce + bccdff5 commit f0a25b2

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/mkr-1000-hosting-a-webserver.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Host a Web Server on the MKR 1000'
2+
title: 'Host a Web Server on the MKR 1000 WiFi'
33
difficulty: advanced
44
compatible-products: [mkr-1000-wifi]
55
description: 'Learn how to access your board through a browser on the same Wi-Fi network.'
@@ -21,7 +21,7 @@ software:
2121

2222
## Introduction
2323

24-
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.
24+
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.
2525

2626
This tutorial is a great starting point for any maker interested in making applications connected to the Internet.
2727

@@ -37,7 +37,7 @@ This tutorial is a great starting point for any maker interested in making appli
3737

3838
### Circuit
3939

40-
Follow the wiring diagram below to connect the LED to the MKR 1000 board.
40+
Follow the wiring diagram below to connect the LED to the MKR 1000 WiFi board.
4141

4242
![Circuit with board, resistor and LED.](assets/MKR1000_T2_IMG01.png)
4343

@@ -223,7 +223,7 @@ Copy the IP address and enter it in a browser. Now, we should see a very empty p
223223
224224
![Accessing the board from the browser.](assets/MKR1000_T2_IMG04.png)
225225
226-
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.
226+
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.
227227
228228
### Troubleshoot
229229

content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/mkr-1000-mqtt-device-to-device.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'Sending Data over MQTT'
33
difficulty: advanced
44
compatible-products: [mkr-1000-wifi]
5-
description: 'Learn how to use the MQTT protocol to send data between two MKR 1000 boards.'
5+
description: 'Learn how to use the MQTT protocol to send data between two MKR 1000 WiFi boards.'
66
tags:
77
- IoT
88
- MQTT
@@ -23,9 +23,9 @@ software:
2323

2424
## Introduction
2525

26-
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.
26+
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.
2727

28-
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.
28+
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.
2929

3030
This tutorial uses the [ArduinoMqttClient](https://github.com/arduino-libraries/ArduinoMqttClient) and [WiFi101](https://www.arduino.cc/en/Reference/WiFi101) libraries.
3131

@@ -331,7 +331,7 @@ void onMqttMessage(int messageSize) {
331331
332332
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.
333333
334-
In this tutorial, we are using two MKR 1000 boards. When switching between the ports, we can see them listed as COM12 and COM3.
334+
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.
335335
336336
![Selecting the right port.](assets/MKR1000_T3_IMG06.png)
337337

content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/mkr-1000-scan-networks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'MKR 1000 Wi-Fi Network Scan'
2+
title: 'MKR 1000 WiFi Network Scan'
33
difficulty: intermediate
44
compatible-products: [mkr-1000-wifi]
55
description: 'Learn how to setup your board to scan nearby Wi-Fi networks.'
@@ -39,7 +39,7 @@ The goals of this project are:
3939

4040
## Scanning Networks
4141

42-
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.
42+
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.
4343

4444
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.
4545

@@ -68,7 +68,7 @@ This tutorial requires no additional circuit.
6868
- `WiFi.SSID()` - retrieves SSID (network name) of found network.
6969
- `WiFi.RSSI()` - retrieves RSSI (signal strength) of found network (measured in dBm).
7070

71-
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**.
71+
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**.
7272

7373
```cpp
7474
#include <SPI.h>
@@ -199,6 +199,6 @@ If the code is not working, there are some common issues we can troubleshoot:
199199
200200
## Conclusion
201201
202-
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.
202+
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.
203203
204204

content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/mkr-1000-web-server-ap-mode.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Web Server Access Point (AP) Mode with MKR 1000'
2+
title: 'Web Server Access Point (AP) Mode with MKR 1000 WiFi'
33
difficulty: advanced
44
compatible-products: [mkr-1000-wifi]
55
description: 'Learn how to set up your board as an access point, allowing other devices to connect to it.'
@@ -25,7 +25,7 @@ software:
2525

2626
## Introduction
2727

28-
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.
28+
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.
2929

3030
## Hardware & Software Needed
3131

@@ -39,7 +39,7 @@ In this tutorial, we will be creating something called an Access Point. An acces
3939

4040
### Circuit
4141

42-
Follow the wiring diagram below to connect the LED to the MKR 1000 board.
42+
Follow the wiring diagram below to connect the LED to the WiFi board.
4343

4444
![Circuit with board, resistor and LED.](assets/MKR1000_T5_IMG01.png)
4545

@@ -55,7 +55,7 @@ ___
5555

5656
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.
5757

58-
We will go through the following steps in order to create a web server on our MKR 1000:
58+
We will go through the following steps in order to create a web server on our MKR 1000 WiFi:
5959

6060
- First, we need to initialize the **WiFi101** library.
6161
- 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
241241

242242
![Different browser views.](assets/MKR1000_T5_IMG05.png)
243243

244-
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.
244+
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.
245245

246246
![Serial Monitor output of a client connecting.](assets/MKR1000_T5_IMG06.png)
247247

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Securely Connecting an Arduino MKR WiFi 1010 to AWS IoT Core"
3-
description: "In this tutorial, you'll learn how to connect your Arduino MKR WiFi 1010 (or MKR 1000) board securely to AWS IoT Core."
3+
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."
44
coverImage: "assets/blob_fXIeojA4b3.png"
55
tags: [aws, iot, mkr]
66
author: "Arduino_Genuino"

0 commit comments

Comments
 (0)