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/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-hosting-a-webserver/mkr-1000-hosting-a-webserver.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: 'Host a Web Server on the MKR 1000'
2
+
title: 'Host a Web Server on the MKR 1000 WiFi'
3
3
difficulty: advanced
4
4
compatible-products: [mkr-1000-wifi]
5
5
description: 'Learn how to access your board through a browser on the same Wi-Fi network.'
@@ -21,7 +21,7 @@ software:
21
21
22
22
## Introduction
23
23
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.
25
25
26
26
This tutorial is a great starting point for any maker interested in making applications connected to the Internet.
27
27
@@ -37,7 +37,7 @@ This tutorial is a great starting point for any maker interested in making appli
37
37
38
38
### Circuit
39
39
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.
41
41
42
42

43
43
@@ -223,7 +223,7 @@ Copy the IP address and enter it in a browser. Now, we should see a very empty p
223
223
224
224

225
225
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.
Copy file name to clipboardExpand all lines: content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-mqtt-device-to-device/mkr-1000-mqtt-device-to-device.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: 'Sending Data over MQTT'
3
3
difficulty: advanced
4
4
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.'
6
6
tags:
7
7
- IoT
8
8
- MQTT
@@ -23,9 +23,9 @@ software:
23
23
24
24
## Introduction
25
25
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.
27
27
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.
29
29
30
30
This tutorial uses the [ArduinoMqttClient](https://github.com/arduino-libraries/ArduinoMqttClient) and [WiFi101](https://www.arduino.cc/en/Reference/WiFi101) libraries.
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.
333
333
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.
335
335
336
336

Copy file name to clipboardExpand all lines: content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-scan-networks/mkr-1000-scan-networks.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: 'MKR 1000 Wi-Fi Network Scan'
2
+
title: 'MKR 1000 WiFi Network Scan'
3
3
difficulty: intermediate
4
4
compatible-products: [mkr-1000-wifi]
5
5
description: 'Learn how to setup your board to scan nearby Wi-Fi networks.'
@@ -39,7 +39,7 @@ The goals of this project are:
39
39
40
40
## Scanning Networks
41
41
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.
43
43
44
44
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.
45
45
@@ -68,7 +68,7 @@ This tutorial requires no additional circuit.
68
68
-`WiFi.SSID()` - retrieves SSID (network name) of found network.
69
69
-`WiFi.RSSI()` - retrieves RSSI (signal strength) of found network (measured in dBm).
70
70
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**.
72
72
73
73
```cpp
74
74
#include<SPI.h>
@@ -199,6 +199,6 @@ If the code is not working, there are some common issues we can troubleshoot:
199
199
200
200
## Conclusion
201
201
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.
Copy file name to clipboardExpand all lines: content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-web-server-ap-mode/mkr-1000-web-server-ap-mode.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: 'Web Server Access Point (AP) Mode with MKR 1000'
2
+
title: 'Web Server Access Point (AP) Mode with MKR 1000 WiFi'
3
3
difficulty: advanced
4
4
compatible-products: [mkr-1000-wifi]
5
5
description: 'Learn how to set up your board as an access point, allowing other devices to connect to it.'
@@ -25,7 +25,7 @@ software:
25
25
26
26
## Introduction
27
27
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.
29
29
30
30
## Hardware & Software Needed
31
31
@@ -39,7 +39,7 @@ In this tutorial, we will be creating something called an Access Point. An acces
39
39
40
40
### Circuit
41
41
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.
43
43
44
44

45
45
@@ -55,7 +55,7 @@ ___
55
55
56
56
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.
57
57
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:
59
59
60
60
- First, we need to initialize the **WiFi101** library.
61
61
- 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
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.
245
245
246
246

Copy file name to clipboardExpand all lines: 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-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
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."
0 commit comments