Skip to content

Commit c387f87

Browse files
author
Federico Fissore
committed
Corrected typos: Yun -> Yún
1 parent 74b853b commit c387f87

File tree

30 files changed

+82
-84
lines changed

30 files changed

+82
-84
lines changed

build/shared/examples/09.USB/Keyboard/KeyboardReprogram/KeyboardReprogram.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
a final key combination (CTRL-U).
1414
1515
Circuit:
16-
* Arduino Leonardo, Micro, Due, LilyPad USB, or Yun
16+
* Arduino Leonardo, Micro, Due, LilyPad USB, or Yún
1717
* wire to connect D2 to ground.
1818
1919
created 5 Mar 2012

build/shared/revisions.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ We suggest to delay the adoption of the new format until a stable 1.5.x is relea
6666
* Added missing keywords: YunServer, YunClient, pow
6767
* Improved folder ignore: now hidden, starting with a dot, and SCCS folders are ignored
6868
* Improved auto format: now handled by Artistic Style http://astyle.sourceforge.net/
69-
* Improved SSH uploader (Arduino Yun): uses file ~/.ssh/config if available.
69+
* Improved SSH uploader (Arduino Yún): uses file ~/.ssh/config if available.
7070
Allows public key only authentication and ssh servers listening on ports other than 22.
7171
* Font anti-aliasing now ON by default (users will have to either delete or manually edit their preferences.txt file)
7272
* Added warning message when opening sketches with additional files with illegal names
@@ -113,14 +113,14 @@ ARDUINO 1.5.4 BETA 2013.09.10
113113

114114
[ide]
115115
* Revert to English locale if the system default is not available
116-
* Added support for Arduino Yun
116+
* Added support for Arduino Yún
117117
* Autodetect of boards connected to each serial port
118-
* Network upload and discovery for Arduino Yun
118+
* Network upload and discovery for Arduino Yún
119119

120120
[libraries]
121121
* sam: fixed wrong SPI initialization (noblepepper)
122122
* updated all instances of Adafruit_GFX to the latest version
123-
* added libraries for Arduino Yun
123+
* added libraries for Arduino Yún
124124

125125
[core]
126126
* avr: fixed bug introduced with recent optimizations in HardwareSerial (atmega8 cpu) (darryl)

libraries/Bridge/examples/Bridge/Bridge.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
Arduino Yun Bridge example
2+
Arduino Yún Bridge example
33
4-
This example for the Arduino Yun shows how to use the
4+
This example for the Arduino Yún shows how to use the
55
Bridge library to access the digital and analog pins
66
on the board through REST calls. It demonstrates how
77
you can create your own API when using REST style
@@ -26,7 +26,7 @@
2626
#include <YunServer.h>
2727
#include <YunClient.h>
2828

29-
// Listen on default port 5555, the webserver on the Yun
29+
// Listen on default port 5555, the webserver on the Yún
3030
// will forward there all the HTTP requests for us.
3131
YunServer server;
3232

libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Console Pixel
33
44
An example of using the Arduino board to receive data from the
5-
Console on the Arduino Yun. In this case, the Arduino boards turns on an LED when
5+
Console on the Arduino Yún. In this case, the Arduino boards turns on an LED when
66
it receives the character 'H', and turns off the LED when it
77
receives the character 'L'.
88

libraries/Bridge/examples/HttpClient/HttpClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Yun HTTP Client
2+
Yún HTTP Client
33
44
This example for the Arduino Yún shows how create a basic
55
HTTP client that connects to the internet and downloads

libraries/Bridge/examples/ShellCommands/ShellCommands.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
Running shell commands using Process class.
33
44
This sketch demonstrate how to run linux shell commands
5-
using an Arduino Yún. It runs the wifiCheck script on the linino side
6-
of the Yun, then uses grep to get just the signal strength line.
5+
using an Arduino Yún. It runs the wifiCheck script on the Linux side
6+
of the Yún, then uses grep to get just the signal strength line.
77
Then it uses parseInt() to read the wifi signal strength as an integer,
88
and finally uses that number to fade an LED using analogWrite().
99
1010
The circuit:
11-
* Arduino Yun with LED connected to pin 9
11+
* Arduino Yún with LED connected to pin 9
1212
1313
created 12 Jun 2013
1414
by Cristian Maglie

libraries/Bridge/examples/SpacebrewYun/inputOutput/inputOutput.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
spacebrew data types, and a custom data type. Every time data is
66
received it is output to the Serial monitor.
77
8-
Make sure that your Yun is connected to the internet for this example
8+
Make sure that your Yún is connected to the internet for this example
99
to function properly.
1010
1111
The circuit:

libraries/Bridge/examples/SpacebrewYun/spacebrewBoolean/spacebrewBoolean.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
is sent. The sketch also accepts analog range messages from
88
other Spacebrew apps.
99
10-
Make sure that your Yun is connected to the internet for this example
10+
Make sure that your Yún is connected to the internet for this example
1111
to function properly.
1212
1313
The circuit:
14-
- Button connected to Yun, using the Arduino's internal pullup resistor.
14+
- Button connected to Yún, using the Arduino's internal pullup resistor.
1515
1616
created 2013
1717
by Julio Terra

libraries/Bridge/examples/SpacebrewYun/spacebrewRange/spacebrewRange.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
message is sent. The sketch also accepts analog range messages from
88
other Spacebrew apps.
99
10-
Make sure that your Yun is connected to the internet for this example
10+
Make sure that your Yún is connected to the internet for this example
1111
to function properly.
1212
1313
The circuit:
14-
- Potentiometer connected to Yun. Middle pin connected to analog pin A0,
14+
- Potentiometer connected to Yún. Middle pin connected to analog pin A0,
1515
other pins connected to 5v and GND pins.
1616
1717
created 2013

libraries/Bridge/examples/SpacebrewYun/spacebrewString/spacebrewString.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
to and from Spacebrew. Every time string data is received it
66
is output to the Serial monitor.
77
8-
Make sure that your Yun is connected to the internet for this example
8+
Make sure that your Yún is connected to the internet for this example
99
to function properly.
1010
1111
The circuit:

0 commit comments

Comments
 (0)