Questions tagged [arduino-yun]

The Arduino Yún is a microcontroller board based on the ATmega32u4 and the Atheros AR9331. Use this tag for questions specifically regarding the Yún, and not just general Arduino usage.

The Arduino Yún is a microcontroller board based on the ATmega32u4 and the Atheros AR9331. The Atheros processor supports a Linux distribution based on OpenWrt named Linino. The board has built-in Ethernet and Wi-Fi support, a USB-A port, micro-SD card slot, 20 digital input/output pins (of which 7 can be used as PWM outputs and 12 as analog inputs), a 16 MHz crystal oscillator, a micro USB connection, an ICSP header, and a 3 reset buttons.

(From https://arduino.cc/en/Main/ArduinoBoardYun)

The main differences between the Yún and other Arduinos is that the Yún contains an onboard Wi-Fi antenna used to program the board wirelessly, connect to the Internet in sketches, or see various information about the board. The Yún also contains a Linux side, which is different because most boards only have one onboard processor. The Yún has two onboard processors; one for the system and one for the Linux part. One can connect to the Linux side of the Yún via a Bridge library. Python 2.7 is also included with the Yún.

Consider using other related tags such as or more specific to your problem.

192 questions
36
votes
6 answers

How to get HTTPS on Arduino?

Put plainly: is there a way to get an HTTPS connection on the Arduino? I have been looking in to it, and I have found it is impossible with the standard library and the Ethernet shield, but is there a custom library that can do it? What about a…
TheDoctor
  • 3,509
  • 1
  • 22
  • 39
29
votes
8 answers

How can I get a unique ID for all my Arduino boards?

Once you have uploaded a sketch to one of your Arduino boards, it is hard to know exactly what source code led to that sketch. Indeed, you may change the source code of your sketch on your PC without updating it (in binary format) to your board. I…
jfpoilpret
  • 9,162
  • 7
  • 38
  • 54
16
votes
2 answers

Yún boot from SD card

I have an Arduino Yún, and it only has 16mb flash onboard for the Linux. I was wondering of it is possible to put a bootloader on the flash that uses the sd card as a rootfs? i want to be able to do more projects on it than those that can fit in 16…
TheDoctor
  • 3,509
  • 1
  • 22
  • 39
11
votes
1 answer

Cloud function getting stopped Parse.com in loop when calling from Arduino-yun

I have created a cloud function using the Parse.com Javascript SDK and I am calling those functions from Arduino. Following is code for the hello function: Parse.Cloud.define("hello", function(request, response) { …
9
votes
2 answers

How do I use Arduino and node.js?

I am new to Arduino, however I have experience in web development, lately I have been using, meteor js and the mean stack for different projects. However, I am open to trying any language for development. What I am trying to do is build a simple…
Anders Kitson
  • 93
  • 1
  • 3
8
votes
1 answer

How many total digital pin outs does the Arduino Yun have

I have read the details on the products page for Arduino Yun but I have also read, on a Arduino forum, that there are only 18 digital pins because of Tx, and Rx. Is this true? I am not worried about the PWM, or analog capabilities of the pins, just…
Jimmy S.
  • 83
  • 2
7
votes
2 answers

Arduino Yun C++ environment? Bridge + Cross-Compiler

I'm creating an XMPP chatbot for the Arduino Yun. However, I'm not too confident in the Python performance on such a low performance device and I'm much more comfortable with C++. Is there a C++ crosscompile environment available, and is there a…
Cilph
  • 71
  • 2
6
votes
1 answer

Can I compile c/c++ code on the linux part of the Arduino Yun?

Can I compile c/c++ code on the linux part of the Arduino Yun? How complete is the linux part of the Arduino Yun? Can I scp some c/c++ code onto the Atheros AR9331 chip compile it? Or must I first crosscompile all software and then put them onto the…
Johan
  • 415
  • 3
  • 9
6
votes
3 answers

Serial sensors and the Yun

I am involved in a project that is going to measure PH and chlorine in a swimming pool. The plan is to use a Arduino Yun. The sensors we are going to use are connected using serial. Since we may be using multiple sensors, is there any difference…
Faux_Clef
  • 199
  • 14
6
votes
1 answer

It is possible to run an entire script on the Linux side? If so, how, what and where to do that?

I am new to using Arduino Yun and I would like to know if it is possible to run an entire script on the Linux side. In my case the script should execute a HTTP request to a remote server, parse the subsequent HTTP response and return some value that…
user502052
  • 439
  • 1
  • 4
  • 7
6
votes
1 answer

It is possible to program Linino to send HTTP requests and then use the returned values in sketch?

I am new to using Arduino Yun and I would like to know if it is possible to run a command from the Arduino sketch in order to make (probably, through the Bridge Library) Linino to execute a HTTP Request to a remote server. Then I would like to know…
user502052
  • 439
  • 1
  • 4
  • 7
5
votes
1 answer

Converting Arduino Uno with Ethernet Shield sketch for Arduino Yún

I'm new to the Arduino Yun and I'm trying to convert a sketch written for the Arduino Uno with a Ethernet Shield. The sketch does HTTP posts to Azure Mobile Services. I've added in the Bridge.h and YunClient.h libraries in place of the Ethernet.h…
5
votes
1 answer

How to disable Arduino Yun to work as Access Point and set it to work as needed?

I am using Arduino Yun and I would like to disable it to work as Access Point. That is, I don't want that it is displayed in the list of available networks. Then I would like to set and use it (separately) in the following scenarios: a) Arduino Yun…
user502052
  • 439
  • 1
  • 4
  • 7
4
votes
5 answers

Arduino Yun external antenna

Can someone help me understand how the external antenna IPX connector actually stays connected to the Yun? Do I have to "force" it in so it snaps in? I've been somewhat gentle with it in fear I'll break something. However when I get close to getting…
Pat
  • 217
  • 1
  • 5
  • 10
4
votes
4 answers

How useful could the Arduino Yun be in computer vision in a robotics project?

I've recently ordered an Arduino Yun and several other components to begin on a small robotics project (based on an old 4x4 RC Truck). Although not mandatory for what I'd like to do, I was wondering how feasible it would be to mount a small camera…
cnsumner
  • 193
  • 1
  • 7
1
2 3
12 13