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
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
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…
4
votes
1 answer

Arduino Christmas light project with dimmer

I have an existing project using an Arduino Yun that controls Christmas lights with relays to turn them on/off. There are currently 13 separate rows of lights on the (60 foot) tree, each plugged into a wall wart that's controlled by its own…
3
votes
0 answers

how to turn yun to ad hoc mode?

Can I turn Yun to ad hoc mode? How to? As the image above I can see the Ad-Hoc model in that drop down list. But only WEP for its security.
emj365
  • 155
  • 1
  • 7
2
votes
0 answers

Yun - replaced uhttpd with lighttpd - luci works but not /data access..?

Ok, utthpd is running on port 80 and lighttpd on port 81...both give access to the luci control panel...all well and good. However the /data access to the yun data store only works from uhttpd. Lighttpd returns error 404 (page not found). Any idea…
2
votes
1 answer

Communication between python script and Arduino sketch

I'm trying to transfer data beetween the two scripts. I'm already using the YunMesseger library (https://github.com/plotly/YunMessenger). But it only make the Arduino -> Python communication. I would like to know how to make the reverse way. I…
2
votes
0 answers

Issue with removing files progrmatically created under "/www/..."

I am having an issue with removing temporarily files I am creating under the /www directory. I have a subdir, "/www/csv", where csv formatted files are being written based on sensor data. The files are created on-demand on the YUN, placed in the…
Pete D
  • 21
  • 1
2
votes
2 answers

How to do with fzz file

I have a file YunConfig.fzz file for arduino yun for map maker project with ultrasonic sensor. How can I open or do with that file? please answer me.
joker
  • 29
  • 1
  • 1
  • 2
2
votes
2 answers

YUN. How to reset the micro controller from linux?

As the title, I'd like to reset the Arduino sketch from the linux machine. Is it possible? how? One solution could be to save the hex file inside the sd card and then upload it via the lua sketch but I think there is a smarter solution.
nkint
  • 461
  • 3
  • 9
  • 22
2
votes
0 answers

uSDaemon in Linino / Arduino Yun Mini hogging the syslog

There is an annoying problem with Linino One / Arduino Yun Mini as the syslog (logread) is full of messages from uSDaemon, complaining about missing files. ls: /sys/bus/scsi/drivers/sd/*/block/sd?: No such file or directory handle umount…
2
votes
0 answers

Arduino Yun restarts or stalls during operation

I have an Arduino Yun that I need to connect to a machine to detect whether the machine is working or is stopped. The signal used as a flag for such behaviour is basically the presence or absence of current in one of the motors that work when the…
Jose
  • 121
  • 2
2
votes
0 answers

Arduino yun strange uploading error

I'm new to arduino and I'm trying to upload a fairly large (I think) program to a arduino yun which includes a 3 dimensional array. I'm using the bridge features of the yun. when I upload the first time after unplugging and plugging back in again it…
2
votes
1 answer

Accessing Arduino Yun from Internet

I am trying to access my Arduino Yun from the internet, and it's not quite working. I have correctly port forwarded the port 5555 from the router to the Yun (verified I am able to access my many other NAT'd resources). I can access the Yun from my…
Pat
  • 217
  • 1
  • 5
  • 10
2
votes
0 answers

yun manage bridge manually

in "Disabling the Bridge Script" of http://cylonjs.com/documentation/platforms/yun/ I did: Edit the /etc/inittab file to comment out the ttyATH0 line (put a # before it) ::sysinit:/etc/init.d/rcS S boot ::shutdown:/etc/init.d/rcS K…
emj365
  • 155
  • 1
  • 7
1
vote
2 answers

Arduino Yún causing power suge warning

Recently I got an Arduino Yún board that sends out a power surge error message everytime I connect it to my laptop through the USB cable. I tried two Arduino Leonardo and one Arduino Uno and there wasn't any problem with them or the USB port. Am I…
MKA
  • 11
  • 1
1
2 3