diff --git a/README.md b/README.md
index 3f82d6a..8510898 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
3. [*ArduinoProps library* value for escape room 2.0](#3-arduinoprops-library-value-for-escape-room-20)
4. [Application protocol for escape room 2.0 prop](#4-application-protocol-for-escape-room-20-prop)
5. [Compatible hardware](#5-compatible-hardware)
-6. [Advantages of Arduino Yun and Dragino Yun shield](#6-advantages-of-arduino-yun-and-dragino-yun-shield)
+6. [Advantages of Arduino Yún and Dragino Yún shield](#6-advantages-of-arduino-Yún-and-dragino-Yún-shield)
7. [Advantages of the *ArduinoProps library*](#7-advantages-of-the-arduinoprops-library)
8. [Limitations due to *PubSubClient*](#8-limitations-due-to-pubsubclient)
9. [Examples](#9-examples)
@@ -33,14 +33,14 @@ Download library dependencies for Library Manager:

-### Add *Dragino Yun + Mega 2560* board to Arduino IDE boards manager
-If you are using Arduino Mega 2560 with Dragino Yun shield, add `package_dragino_yun_test_index.json` to **Additional Boards Manager URLs** in **Preferences**:
+### Add *Dragino Yún + Mega 2560* board to Arduino IDE boards manager
+If you are using Arduino Mega 2560 with Dragino Yún shield, add `package_dragino_Yún_test_index.json` to **Additional Boards Manager URLs** in **Preferences**:

-URL to add: `http://www.dragino.com/downloads/downloads/YunShield/package_dragino_yun_test_index.json`
+URL to add: `http://www.dragino.com/downloads/downloads/YunShield/package_dragino_Yun_test_index.json`
-Then install *Dragino Yun* in **Boards Manager**:
+Then install *Dragino Yún* in **Boards Manager**:

@@ -54,6 +54,11 @@ Add `#include "ArduinoProps.h"` on top of your sketch and start coding.
A fork of one the examples is the fastest way to create your own prop.
+#### Arduino Yún an Dragino Yún shield setup
+If you are not familiar with Yún (a Linux SoC bridged to the MCU), you will find help:
+* Arduino Yún Board Setup and Demo at Medium
+* Getting Started with the Arduino Yún azr arduino.cc
+
### Find help in the documentation
Reading [EXAMPLES.md](EXAMPLES.md) will be helpful.
@@ -61,7 +66,7 @@ Reading [EXAMPLES.md](EXAMPLES.md) will be helpful.
## 2. Escape room 2.0 prop with Arduino
-The *ArduinoProps library* allows to build *escape room 2.0 prop* easily with Arduino and particularly with Arduino Yun or Arduino Mega 2560 + Dragino Yun shield however it works with Ethernet and Wifi shields too.
+The *ArduinoProps library* allows to build *escape room 2.0 prop* easily with Arduino and particularly with Arduino Yún or Arduino Mega 2560 + Dragino Yún shield however it works with Ethernet and Wifi shields too.
The *ArduinoProps library* relies on *Nick O'Leary PubSubClient* library for MQTT. MQTT is a lightweight

@@ -114,7 +119,7 @@ Some analog data can change at every loop but not significantly, for example U=2
### Maintaining MQTT server connection
MQTT connection state must be checked at erevy sketch loop as well as incoming MQTT messages. *ArduinoProps library* does all in one code line.
-And on Yun this same code line can switch MQTT server IP address (can be helpful in a fallback plan).
+And on Yún this same code line can switch MQTT server IP address (can be helpful in a fallback plan).
### Simple human-readable text protocol
An escape room 2.0 is typically centrally controlled from a Windows PC which provides the Game Master with monitoring and control information as well as some automation.
@@ -139,7 +144,7 @@ MQTT standard limitations are far above what we need:
However, on Arduino the limit is for the addition of topic length + message length:
- Wifi shield limit is 80 bytes
-- Yun limit (due to Bridge) is 120 bytes
+- Yún limit (due to Bridge) is 120 bytes
DATA messages when many I/O like on Arduino Mega 2560 and MESG information messages can go very long, and crash the sketch without notice at run-time.
@@ -214,14 +219,14 @@ To use other WiFi hardware compatible with any *Dragino Yun Shield Wiki.
+See Dragino Yún Shield Wiki.
## 7. Advantages of the *ArduinoProps library*
@@ -231,7 +236,7 @@ With *ArduinoProps library*:
- create connected prop quickly thanks to the application protocol and examples
- targetted for escape room prop, *ArduinoProps library* can be used for any IoT project
- re-use your code when creating new escape rooms
-- rely on *ArduinoProps library* robustness: for example, ***the library handles the Arduino Yun Bridge transfer size limitation by smartly splitting large messages (only) when necessary***.
+- rely on *ArduinoProps library* robustness: for example, ***the library handles the Arduino Yún Bridge transfer size limitation by smartly splitting large messages (only) when necessary***.
**Note:** sending too large messages to Arduino Bridge breaks the Arduino sketch. *ArduinoProps library* prevents this crash case.
@@ -254,7 +259,7 @@ The library comes with a number of example sketches. See **File > Examples > Ard
See [EXAMPLES.md](EXAMPLES.md) for an adaptation of the Blink example (https://www.arduino.cc/en/tutorial/blink) as a simple MQTT prop:
-1. **BlinkOnBridgeProp**: the Blink example on a Yun prop with *ArduinoProps library*
+1. **BlinkOnBridgeProp**: the Blink example on a Yún prop with *ArduinoProps library*
2. **BlinkOnEthernetProp**: the Blink example on an Ethernet prop with *ArduinoProps library*
3. **BlinkOnWifiProp**: the Blink example on a Wifi prop with *ArduinoProps library*
4. **BlinkOnBridgePubSub**: the Blink example on prop using *PubSubClient* directly