This page (revision-14) was last changed on 2020-06-05 22:04 by Murray Altheim

This page was created on 2020-05-24 01:48 by Murray Altheim

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
14 2020-06-05 22:04 7 KB Murray Altheim to previous
13 2020-05-24 11:46 7 KB Murray Altheim to previous | to last
12 2020-05-24 11:44 7 KB Murray Altheim to previous | to last
11 2020-05-24 11:44 7 KB Murray Altheim to previous | to last
10 2020-05-24 10:58 7 KB Murray Altheim to previous | to last
9 2020-05-24 05:04 6 KB Murray Altheim to previous | to last
8 2020-05-24 03:52 6 KB Murray Altheim to previous | to last
7 2020-05-24 03:22 6 KB Murray Altheim to previous | to last
6 2020-05-24 02:48 6 KB Murray Altheim to previous | to last
5 2020-05-24 02:34 5 KB Murray Altheim to previous | to last
4 2020-05-24 02:28 5 KB Murray Altheim to previous | to last
3 2020-05-24 02:19 4 KB Murray Altheim to previous | to last
2 2020-05-24 02:15 4 KB Murray Altheim to previous | to last
1 2020-05-24 01:48 2 KB Murray Altheim to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 changed one line
[{Image src='attach/Arduino/arduino-yun-rev-2.2.jpg' width='250' caption='Arduino Yún'}]
%%(text-align:center)
[{Image src='attach/Arduino/arduino-yun-rev-2.2.jpg' width='400' caption='Arduino Yún'}]
%%
At line 3 changed one line
The __[Arduino Yún|ArduinoYún]__ is unusual in that it combines what is effectively a 16MHz [Arduino Leonardo|https://store.arduino.cc/usa/leonardo] microcontroller with an [Atheros AR9331|https://www.openhacks.com/uploadsproductos/ar9331_datasheet.pdf], a 400MHz microprocessor running OpenWrt (a version of [Linux|https://en.wikipedia.org/wiki/Linux]), so it's a bit like a combination of an [Arduino] and a [Raspberry Pi] on one board the size of the Arduino Uno.
The __[Arduino Yún|ArduinoYún]__ (''Yún'' which means "cloud" in Mandarin) is unusual in that it combines what is effectively a 16MHz [Arduino Leonardo|https://store.arduino.cc/usa/leonardo] microcontroller with an [Atheros AR9331|https://www.openhacks.com/uploadsproductos/ar9331_datasheet.pdf], a 400MHz microprocessor running OpenWrt (a version of [Linux|https://en.wikipedia.org/wiki/Linux]), so it's a bit like a combination of an [Arduino] and a [Raspberry Pi] on one board the size of the Arduino Uno.
At line 5 changed one line
Here's some miscellaneous notes regarding the Yún (which means "''cloud''" in Mandarin).
I was [interested in [connecting the Yun to a motor shield or a Zumo|ArduinoYúnInterfacing], so I contacted Adafruit, Arduino.cc and Pololu, the latter makes the Zumo to get some help.
At line 7 changed one line
!! Notes
Here's some miscellaneous notes regarding the Yún.
At line 11 added 4 lines
!! OS Installation Notes
Despite being a 400MHz processor and being connected directly via an ethernet cable, it is good to remember that the AR9331 on the Yún is still quite a small computer. It's not as fast as a Raspberry Pi (a Pi 3 B+ runs at 1.1GHz) and you can run out of memory (and need to reboot) sometimes.
At line 33 changed 2 lines
# opkg install tcsh
# opkg install vim-full
# opkg install tcsh blkid vim-full vim-runtime
At line 39 changed one line
The {{tcsh}} is just a personal preference, rather than using the native bash shell.
The {{tcsh}} is just a personal preference, rather than using the native bash shell. With the customised prompt (below) I get a nice colorful prompt. And yes, it's possible to do this with bash, but tcsh has a lot of nice features that I'm accustomed to. The {{blkid}} was used for setting up a swap memory space but is otherwise unnecessary. {{vim-full}} replaces the very-minimal version of the {{vi}} editor already included.
At line 41 changed one line
The Yún comes with Python 2 but I want to use Python 3, so I'll be installing vim, tcsh, Python3, and pip3. The {{python3}} package installs the entirety of Python 3, so it seems {{python3-light}} is meant to generally suffice for most people. Based on the difference in install times, it's significantly smaller.
The Yún comes with Python 2 but I want to use Python 3, so I installed Python3 and the python package installer program {{pip3}}. The {{python3}} package installs the entirety of Python 3, so it seems {{python3-light}} is meant to generally suffice for most people. Based on the difference in install times, it's ''significantly'' smaller. Install pip3, upgrading the setuptools, smbus2 (for I²C support), etc.:
{{{
# pip3 install --upgrade setuptools
# pip3 install smbus2
# pip3 install python3-yaml
}}}
At line 53 added 7 lines
When installing {{git}} you'll also need {{ca-bundle}} in order to be able to handle {{https:}} URLs.
{{{
# opkg install ca-bundle git git-http
}}}
After that you should be able to perform a {{git clone}} successfully.
At line 119 added one line
* [Getting Started with the Arduino Yún Rev. 2|https://www.arduino.cc/en/Guide/ArduinoYunRev2]
At line 106 changed one line
* [Running out of memory on yun rev 2 while trying to install sdk|https://github.com/aws/aws-iot-device-sdk-arduino-yun/issues/72] tells how to "increase available memory" by adding swap space